예제 #1
0
 public CategoryController(ServiceLayer.Services.Category.ICategoryService _iCategoryService)
 {
     _ICategoryService = _iCategoryService;
 }
예제 #2
0
 public ProductController(ServiceLayer.Services.Product.IProductService _ProductService, ServiceLayer.Services.Category.ICategoryService _iCategoryService)
 {
     _IProductService  = _ProductService;
     _ICategoryService = _iCategoryService;
 }