]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP#1775466 Angular(6) base application
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / catalog.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {CatalogCommonModule} from '@eg/share/catalog/catalog-common.module';
4 import {CatalogRoutingModule} from './routing.module';
5 import {CatalogComponent} from './catalog.component';
6 import {SearchFormComponent} from './search-form.component';
7 import {ResultsComponent} from './result/results.component';
8 import {RecordComponent} from './record/record.component';
9 import {CopiesComponent} from './record/copies.component';
10 import {ResultPaginationComponent} from './result/pagination.component';
11 import {ResultFacetsComponent} from './result/facets.component';
12 import {ResultRecordComponent} from './result/record.component';
13 import {StaffCatalogService} from './catalog.service';
14 import {RecordPaginationComponent} from './record/pagination.component';
15 import {RecordActionsComponent} from './record/actions.component';
16 import {HoldingsService} from '@eg/staff/share/holdings.service';
17
18 @NgModule({
19   declarations: [
20     CatalogComponent,
21     ResultsComponent,
22     RecordComponent,
23     CopiesComponent,
24     SearchFormComponent,
25     ResultRecordComponent,
26     ResultFacetsComponent,
27     ResultPaginationComponent,
28     RecordPaginationComponent,
29     RecordActionsComponent
30   ],
31   imports: [
32     StaffCommonModule,
33     CatalogCommonModule,
34     CatalogRoutingModule
35   ],
36   providers: [
37     StaffCatalogService,
38     HoldingsService
39   ]
40 })
41
42 export class CatalogModule {
43
44 }