26 lines
850 B
TypeScript
26 lines
850 B
TypeScript
|
import { NgModule} from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
|
||
|
import{SearchEntityRegistriesComponent} from './entityRegistries.component';
|
||
|
import {SearchResultsModule } from '../searchUtils/searchResults.module';
|
||
|
import {DataProvidersServiceModule} from '../../services/dataProvidersService.module';
|
||
|
import {SearchFormModule} from '../searchUtils/searchForm.module';
|
||
|
import {SearchPageModule} from '../searchUtils/searchPage.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule, FormsModule,
|
||
|
DataProvidersServiceModule,
|
||
|
SearchFormModule, SearchResultsModule, SearchPageModule
|
||
|
|
||
|
],
|
||
|
declarations: [
|
||
|
SearchEntityRegistriesComponent
|
||
|
],
|
||
|
exports: [
|
||
|
SearchEntityRegistriesComponent
|
||
|
]
|
||
|
})
|
||
|
export class EntityRegistriesModule { }
|