]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/patron/patron.module.ts
LP1859241 Angular holds patron search dialog
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / patron / patron.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {GridModule} from '@eg/share/grid/grid.module';
4 import {PatronService} from './patron.service';
5 import {PatronSearchComponent} from './search.component';
6 import {PatronSearchDialogComponent} from './search-dialog.component';
7 import {ProfileSelectComponent} from './profile-select.component';
8
9 @NgModule({
10     declarations: [
11         PatronSearchComponent,
12         PatronSearchDialogComponent,
13         ProfileSelectComponent
14     ],
15     imports: [
16         StaffCommonModule,
17         GridModule
18     ],
19     exports: [
20         PatronSearchComponent,
21         PatronSearchDialogComponent,
22         ProfileSelectComponent
23     ],
24     providers: [
25         PatronService
26     ]
27 })
28
29 export class PatronModule {}
30