2019-10-02 16:15:08 +02:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import { OrganizationsDeletedByInferenceComponent } from './deletedByInference.component';
|
|
|
|
import { OrganizationsDeletedByInferenceService } from './deletedByInference.service';
|
|
|
|
|
|
|
|
import {ResultLandingUtilsModule} from '../../landing-utils/resultLandingUtils.module';
|
|
|
|
|
|
|
|
import {PagingModule} from '../../../utils/paging.module';
|
|
|
|
|
|
|
|
import {ErrorMessagesModule} from '../../../utils/errorMessages.module';
|
|
|
|
import {ShowAuthorsModule} from "../../../utils/authors/showAuthors.module";
|
|
|
|
import {LandingModule} from "../../landing-utils/landing.module";
|
2020-03-16 14:09:46 +01:00
|
|
|
import {NoLoadPaging} from "../../../searchPages/searchUtils/no-load-paging.module";
|
|
|
|
import {ResultPreviewModule} from "../../../utils/result-preview/result-preview.module";
|
2019-10-02 16:15:08 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, ResultLandingUtilsModule,
|
2020-03-16 14:09:46 +01:00
|
|
|
PagingModule, ErrorMessagesModule, ShowAuthorsModule, LandingModule, NoLoadPaging, ResultPreviewModule
|
2019-10-02 16:15:08 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
OrganizationsDeletedByInferenceComponent
|
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
OrganizationsDeletedByInferenceService
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
OrganizationsDeletedByInferenceComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class OrganizationsDeletedByInferenceModule { }
|