/**
 * This is the base module file. Copy the file into your site folder
 * under modules/*module-name* to extend this module and its components
 */

import { NgModule }                     from '@angular/core'
import { SharedModule }                 from '@k-core/modules/shared/mod.shared'
import { CustomProductRouting }         from './rte.custom-product'

// Components
import { CreateproductComponent }       from './components/createProduct/cmp.createProduct'
import { CustomRabatComponent }         from './components/customRabat/cmp.customRabat'

// Views

// Services
import { CustomProductService }         from './services/svc.custom-product'

// Guards
import { busGuard }                     from '@k-core/guards/guard.login'
import { ReactiveFormsModule } from '@angular/forms'

@NgModule({
    imports: [
        SharedModule,
        ReactiveFormsModule,
        CustomProductRouting

    ],
    exports: [
        // *Add your exports here*


    ],
    declarations: [
        // Components
        CreateproductComponent,
        CustomRabatComponent

        // Views
        // *Add your views here*

        

    ],
    providers: [
        busGuard,
        CustomProductService


    ]
})

export class CustomProductModule {}
