]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1806087 Angular staff catalog phase II.
[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 {CatalogComponent} from './catalog.component';
6 import {SearchFormComponent} from './search-form.component';
7 import {ResultsComponent} from './result/results.component';
8 import {RecordComponent} from './record/record.component';
9 import {CopiesComponent} from './record/copies.component';
10 import {ResultPaginationComponent} from './result/pagination.component';
11 import {ResultFacetsComponent} from './result/facets.component';
12 import {ResultRecordComponent} from './result/record.component';
13 import {StaffCatalogService} from './catalog.service';
14 import {RecordPaginationComponent} from './record/pagination.component';
15 import {RecordActionsComponent} from './record/actions.component';
16 import {HoldingsService} from '@eg/staff/share/holdings.service';
17 import {BasketActionsComponent} from './basket-actions.component';
18 import {HoldComponent} from './hold/hold.component';
19 import {HoldService} from '@eg/staff/share/hold.service';
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   ],
49   providers: [
50     StaffCatalogService,
51     HoldingsService,
52     HoldService
53   ]
54 })
55
56 export class CatalogModule {
57
58 }