]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
b07938a4c8508284b25dfb2bca265aa94167a0f9
[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
28 @NgModule({
29   declarations: [
30     CatalogComponent,
31     ResultsComponent,
32     RecordComponent,
33     CopiesComponent,
34     SearchFormComponent,
35     ResultRecordComponent,
36     ResultFacetsComponent,
37     ResultPaginationComponent,
38     RecordPaginationComponent,
39     RecordActionsComponent,
40     BasketActionsComponent,
41     HoldComponent,
42     PartsComponent,
43     PartMergeDialogComponent,
44     BrowseComponent,
45     BrowseResultsComponent,
46     ConjoinedComponent,
47     HoldingsMaintenanceComponent
48   ],
49   imports: [
50     StaffCommonModule,
51     CatalogCommonModule,
52     CatalogRoutingModule,
53     HoldsModule,
54     HoldingsModule,
55     BookingModule
56   ],
57   providers: [
58     StaffCatalogService
59   ]
60 })
61
62 export class CatalogModule {
63
64 }