2019-03-05 10:45:42 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import { DeletedByInferenceComponent } from './deletedByInference.component';
|
|
|
|
import { DeletedByInferenceService } from './deletedByInference.service';
|
|
|
|
|
2019-09-30 13:02:06 +02:00
|
|
|
import {ResultLandingUtilsModule} from '../../landing-utils/resultLandingUtils.module';
|
2019-03-05 10:45:42 +01:00
|
|
|
|
|
|
|
import {PagingModule} from '../../../utils/paging.module';
|
|
|
|
|
|
|
|
import {ErrorMessagesModule} from '../../../utils/errorMessages.module';
|
2019-05-29 14:24:43 +02:00
|
|
|
import {ShowAuthorsModule} from "../../../utils/authors/showAuthors.module";
|
2019-03-05 10:45:42 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2019-09-05 10:49:33 +02:00
|
|
|
CommonModule, FormsModule, ResultLandingUtilsModule,
|
2019-05-29 14:24:43 +02:00
|
|
|
PagingModule, ErrorMessagesModule, ShowAuthorsModule
|
2019-03-05 10:45:42 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DeletedByInferenceComponent
|
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
DeletedByInferenceService
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
DeletedByInferenceComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DeletedByInferenceModule { }
|