dashboard.module.ts 4.11 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { DashboardRoutingModule } from './dashboard-routing.module';
import { SalesComponent } from './sales/sales.component';
import { EcommerceComponent } from './ecommerce/ecommerce.component';
import { CryptoComponent } from './crypto/crypto.component';
import { JobsComponent } from './jobs/jobs.component';
import { NftComponent } from './nft/nft.component';
import { AnalyticsComponent } from './analytics/analytics.component';
import { ProjectsComponent } from './projects/projects.component';
import { HrmComponent } from './hrm/hrm.component';
import { CrmComponent } from './crm/crm.component';
import { PersonalComponent } from './personal/personal.component';
import { StocksComponent } from './stocks/stocks.component';
import { CourseComponent } from './course/course.component';
import { NgApexchartsModule } from 'ng-apexcharts';
import { NgChartsModule } from 'ng2-charts';
import { CarouselModule } from 'ngx-owl-carousel-o';
import { SharedModule } from 'src/app/shared/sharedmodule';
import { NgxChartsModule } from '@swimlane/ngx-charts';
import { NgSelectModule } from '@ng-select/ng-select';
23 24 25
import { CompanyRegistrationComponent } from '../company-registration/company-registration.component';
import { DepartmentRegisterComponent } from '../company-registration/branch-business-unit/department-register/department-register.component';
import { BranchBusinessUnitComponent } from '../company-registration/branch-business-unit/branch-business-unit.component';
26
import { DepartmentListComponent } from '../company-registration/branch-business-unit/department-list/department-list.component';
27 28
import { SubDepartmentOneComponent} from '../company-registration/branch-business-unit/sub-department-one/sub-department-one.component';
import { SubDepartmentThreeComponent} from '../company-registration/branch-business-unit/sub-department-three/sub-department-three.component';
29 30 31
import { SubDepartmentTwoComponent } from '../company-registration/branch-business-unit/sub-department-two/sub-department-two.component';
import { SubDepartmentFourComponent } from '../company-registration/branch-business-unit/sub-department-four/sub-department-four.component';
import { SectionRegistrationComponent } from '../company-registration/branch-business-unit/section-registration/section-registration.component';
32
import { JobDescriptionComponent } from '../job-description/job-description.component';
Natthaphat Pankiang committed
33
import { PositionUnitComponent } from '../job-description/position/position-unit.component';
34
import { EmployeeGroupUnit } from '../job-description/employee-group-unit/employee-group-unit.component';
35
import { EmployeeCategories } from '../job-description/employee-categories/employee-categories.component';
36 37
import { AccountSettingsComponent } from '../account-settings/account-settings.component';
import { UserSettingsComponent } from '../account-settings/user-settings/user-settings.component';
38
import { EmployeeLevel } from '../job-description/employee-level/employee-level.component';
39
import { SetAPasswordComponent } from '../account-settings/set-a-password/set-a-password.component';
40

Ooh-Ao committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54
@NgModule({
  declarations: [
    SalesComponent,
    EcommerceComponent,
    CryptoComponent,
    JobsComponent,
    NftComponent,
    AnalyticsComponent,
    ProjectsComponent,
    HrmComponent,
    CrmComponent,
    PersonalComponent,
    StocksComponent,
    CourseComponent,
55 56 57 58

    // my Component
    CompanyRegistrationComponent,
    BranchBusinessUnitComponent,
59 60
    DepartmentRegisterComponent,
    DepartmentListComponent,
61
    SectionRegistrationComponent,
62
    SubDepartmentOneComponent,
63
    SubDepartmentTwoComponent,
64
    SubDepartmentThreeComponent,
65 66
    SubDepartmentFourComponent,
    JobDescriptionComponent,
67 68
    PositionUnitComponent,
    EmployeeGroupUnit,
69
    EmployeeCategories,
70 71
    AccountSettingsComponent,
    UserSettingsComponent,
72
    EmployeeLevel,
73
    SetAPasswordComponent
Ooh-Ao committed
74 75 76 77 78 79 80 81 82 83 84 85
  ],
  imports: [
    CommonModule,
    DashboardRoutingModule,
    NgChartsModule,
    NgApexchartsModule,
    CarouselModule,
    SharedModule,
    NgxChartsModule,
    NgSelectModule,
  ],
})
86
export class DashboardModule { }