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