]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts
LP1615805 No inputs after submit in patron search (AngularJS)
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / sandbox / sandbox.module.ts
1 import {NgModule} from '@angular/core';
2 import {FmRecordEditorModule} from '@eg/share/fm-editor/fm-editor.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {TranslateModule} from '@eg/share/translate/translate.module';
5 import {SandboxRoutingModule} from './routing.module';
6 import {SandboxComponent} from './sandbox.component';
7 import {ReactiveFormsModule} from '@angular/forms';
8 import {SampleDataService} from '@eg/share/util/sample-data.service';
9 import {OrgFamilySelectModule} from '@eg/share/org-family-select/org-family-select.module';
10 import {ItemLocationSelectModule} from '@eg/share/item-location-select/item-location-select.module';
11 import {PatronModule} from '@eg/staff/share/patron/patron.module';
12
13 @NgModule({
14     declarations: [
15         SandboxComponent
16     ],
17     imports: [
18         StaffCommonModule,
19         TranslateModule,
20         FmRecordEditorModule,
21         OrgFamilySelectModule,
22         ItemLocationSelectModule,
23         SandboxRoutingModule,
24         ReactiveFormsModule,
25         PatronModule
26     ],
27     providers: [
28         SampleDataService
29     ]
30 })
31
32 export class SandboxModule {
33
34 }