aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/service-consumption-editor/service-consumption-editor.module.ts
blob: e37cd76716b40e07c6c5e4e33a49c047169ab868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { NgModule } from "@angular/core";
import {CommonModule} from "@angular/common";
import {ServiceConsumptionCreatorComponent} from "./service-consumption-editor.component";
import {FormsModule} from "@angular/forms";
import {FormElementsModule} from "app/ng2/components/ui/form-components/form-elements.module";
import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
import {PropertyTableModule} from 'app/ng2/components/logic/properties-table/property-table.module';
import {TranslateModule} from 'app/ng2/shared/translator/translate.module';

@NgModule({
    declarations: [
        ServiceConsumptionCreatorComponent
    ],
    imports: [CommonModule,
        FormsModule,
        FormElementsModule,
        UiElementsModule,
        PropertyTableModule,
        TranslateModule
    ],
    exports: [],
    entryComponents: [
        ServiceConsumptionCreatorComponent
    ],
    providers: []
})
export class ServiceConsumptionCreatorModule {
}