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