2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { ClaimContextSearchFormComponent } from './claimContextSearchForm.component';
|
|
|
|
import {StaticAutocompleteModule} from '../../utils/staticAutoComplete/staticAutoComplete.module';
|
|
|
|
import { RouterModule } from '@angular/router';
|
2018-02-13 15:52:23 +01:00
|
|
|
import {HelperModule} from '../../utils/helper/helper.module';
|
2022-03-16 17:54:22 +01:00
|
|
|
import {ClaimProjectsSearchFormModule} from "./claimProjectSearchForm.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2022-03-16 17:54:22 +01:00
|
|
|
SharedModule, RouterModule,
|
2018-02-13 15:52:23 +01:00
|
|
|
StaticAutocompleteModule,
|
2022-03-16 17:54:22 +01:00
|
|
|
HelperModule, ClaimProjectsSearchFormModule
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
ClaimContextSearchFormComponent
|
|
|
|
], exports: [ClaimContextSearchFormComponent ]
|
|
|
|
})
|
|
|
|
export class ClaimContextSearchFormModule { }
|