]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1821382 Angular staff catalog Holdings Maintenance
[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 {HoldsModule} from '@eg/staff/share/holds/holds.module';
6 import {HoldingsModule} from '@eg/staff/share/holdings/holdings.module';
7 import {CatalogComponent} from './catalog.component';
8 import {SearchFormComponent} from './search-form.component';
9 import {ResultsComponent} from './result/results.component';
10 import {RecordComponent} from './record/record.component';
11 import {CopiesComponent} from './record/copies.component';
12 import {ResultPaginationComponent} from './result/pagination.component';
13 import {ResultFacetsComponent} from './result/facets.component';
14 import {ResultRecordComponent} from './result/record.component';
15 import {StaffCatalogService} from './catalog.service';
16 import {RecordPaginationComponent} from './record/pagination.component';
17 import {RecordActionsComponent} from './record/actions.component';
18 import {BasketActionsComponent} from './basket-actions.component';
19 import {HoldComponent} from './hold/hold.component';
20 import {PartsComponent} from './record/parts.component';
21 import {PartMergeDialogComponent} from './record/part-merge-dialog.component';
22 import {BrowseComponent} from './browse.component';
23 import {BrowseResultsComponent} from './browse/results.component';
24 import {HoldingsMaintenanceComponent} from './record/holdings.component';
25
26 @NgModule({
27   declarations: [
28     CatalogComponent,
29     ResultsComponent,
30     RecordComponent,
31     CopiesComponent,
32     SearchFormComponent,
33     ResultRecordComponent,
34     ResultFacetsComponent,
35     ResultPaginationComponent,
36     RecordPaginationComponent,
37     RecordActionsComponent,
38     BasketActionsComponent,
39     HoldComponent,
40     PartsComponent,
41     PartMergeDialogComponent,
42     BrowseComponent,
43     BrowseResultsComponent,
44     HoldingsMaintenanceComponent
45   ],
46   imports: [
47     StaffCommonModule,
48     CatalogCommonModule,
49     CatalogRoutingModule,
50     HoldsModule
51   ],
52   providers: [
53     StaffCatalogService
54   ]
55 })
56
57 export class CatalogModule {
58
59 }