2019-07-15 18:14:27 +02:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import{SearchDataprovidersToDepositComponent} from './searchDataprovidersToDeposit.component';
|
|
|
|
|
|
|
|
import {SearchResultsModule } from '../searchPages/searchUtils/searchResults.module';
|
|
|
|
|
|
|
|
import {DataProvidersServiceModule} from '../services/dataProvidersService.module';
|
|
|
|
import {SearchFormModule} from '../searchPages/searchUtils/searchForm.module';
|
|
|
|
import {IsRouteEnabled} from '../error/isRouteEnabled.guard';
|
2020-03-12 18:03:35 +01:00
|
|
|
import {SearchDataProvidersModule} from "../searchPages/searchDataProviders.module";
|
2020-04-27 14:54:48 +02:00
|
|
|
import {BreadcrumbsModule} from "../utils/breadcrumbs/breadcrumbs.module";
|
2022-04-19 15:32:45 +02:00
|
|
|
import {SearchInputModule} from "../sharedComponents/search-input/search-input.module";
|
2019-07-15 18:14:27 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
RouterModule,
|
|
|
|
DataProvidersServiceModule,
|
2022-04-19 15:32:45 +02:00
|
|
|
SearchFormModule, SearchResultsModule, SearchDataProvidersModule, BreadcrumbsModule, SearchInputModule
|
|
|
|
|
2019-07-15 18:14:27 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchDataprovidersToDepositComponent
|
|
|
|
],
|
2020-11-11 15:43:13 +01:00
|
|
|
providers:[ IsRouteEnabled],
|
2019-07-15 18:14:27 +02:00
|
|
|
exports: [
|
|
|
|
SearchDataprovidersToDepositComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SearchDataprovidersToDepositModule { }
|