src/app/modules/search/search.module.ts
Модуль поиска
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TopMenuBxModule } from 'glx.ui/components/topMenuBx/topMenuBx';
import { PageTitleBxModule } from 'glx.ui/components/pageTitleBx/pageTitleBx';
import { LoadingBannerModule } from 'glx.ui/components/loadingBanner/loadingBanner';
import { SliderModule } from 'glx.ui/components/slider/slider';
import { StaffSearchModule } from 'glx.ui/components/staffSearch/staffSearch';
import { StudentSearchModule } from 'glx.ui/components/studentSearch/studentSearch';
import { StructureViewerModule } from 'glx.ui/components/structureViewer/structureViewer';
import { SearchComponent } from './search.component';
import { SearchStudentComponent } from './student/student';
import { SearchStaffComponent } from './staff/staff';
import { SearchStructureComponent } from './structure/structure';
import { SearchStructureEduComponent } from './structure_edu/structure_edu';
import { ProfileService } from 'glx.ui/components/kernel/services/profile.service';
import { CommonService } from 'glx.ui/components/kernel/services/common.service';
import { SearchRoutingModule } from './search.routing.module';
const GLX_UI_MODULES = [
TopMenuBxModule,
PageTitleBxModule,
LoadingBannerModule,
SliderModule,
StaffSearchModule,
StudentSearchModule,
StructureViewerModule
];
/**
* Модуль поиска
*/
@NgModule({
imports: [
CommonModule,
SearchRoutingModule,
GLX_UI_MODULES
],
declarations: [
SearchComponent,
SearchStructureComponent,
SearchStructureEduComponent,
SearchStudentComponent,
SearchStaffComponent
],
providers: [
CommonService,
ProfileService
]
})
export class SearchModule {
}