/**
 * 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 { Include }                      from '@k-core/modules/storeDropdown/inc.storeDropdown'

import { CommonModule }             from '@angular/common'
import { SharedModule }             from '@k-core/modules/shared/mod.shared'
import { RouterModule }             from '@angular/router'

import { StoredropdownRouting } from './rte.storeDropdown'

// Components
import { ListComponent } from './components/list/cmp.list'

// Views

// Services
import { getStoresService } from './services/svc.getStores'

@NgModule({
    imports: [
        CommonModule,
        SharedModule,
        RouterModule,
        StoredropdownRouting,

        ...Include.imports
    ],
    exports: [
        ListComponent,

        ...Include.exports
    ],
    declarations: [
        // Components
        ListComponent,

        // Views
        // *Add your views here*

        
        ...Include.declarations
    ],
    providers: [
        getStoresService,

        ...Include.providers
    ]
})

export class StoredropdownModule {}
