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