modules/productservice/src/product-service.module.ts
Product service module. Product service implements logic of manipulating
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { NgModule } from '@angular/core';
import { ProductService} from './product-service';
import { DalModule } from '@nodeart/dal/index';
/**
* Product service module. Product service implements logic of manipulating
*/
@NgModule({
imports: [
DalModule
],
providers: [
ProductService
]
})
export class ProductServiceModule { }