Beispiel #1
0
 public ProductController(IErrorService errorService, IProductService productService, IProductCategoryService productCategoryService, IUnitProductService unitProductService, IProviderService providerService)
     : base(errorService)
 {
     this._productService         = productService;
     this._productCategoryService = productCategoryService;
     this._unitProductService     = unitProductService;
     this._providerService        = providerService;
 }
 public UnitProductController(IErrorService errorService, IUnitProductService unitProductService) :
     base(errorService)
 {
     this._unitProductService = unitProductService;
 }