2018-04-10 12:37:09 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { InfraStoreModule } from './infra-store.module';
|
|
|
|
import { COMPONENTS } from './component';
|
|
|
|
import { SERVICES } from './service';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-10 12:37:09 +00:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
InfraStoreModule,
|
|
|
|
FormsModule,
|
|
|
|
PrimeNGModules,
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class InfraModule { }
|