Example #1
0
 public ManageProductsController(IProductService productService,
                                 IProductCategoryService categoryService, IManufactureService manufactureService,
                                 IProductCategoryService productCategoryService)
 {
     _productService         = productService;
     _categoryService        = categoryService;
     _manufactureService     = manufactureService;
     _productCategoryService = productCategoryService;
 }
 public HomeController(IProductCategoryService productCategoryService,
                       ICommonService commonService,
                       IProductService productService,
                       IManufactureService manufactureService)
 {
     _productCategoryService = productCategoryService;
     _productService         = productService;
     _commonService          = commonService;
     _manufactureService     = manufactureService;
 }
 public ProductController(IProductSevice productSevice,
                          ICategoryService categoryService,
                          ISupplierService supplierService,
                          IManufactureService manufactureService)
 {
     _productSevice      = productSevice;
     _categoryService    = categoryService;
     _supplierService    = supplierService;
     _manufactureService = manufactureService;
 }
 public ManufactureController(IManufactureService manufactureService)
 {
     _manufactureService = manufactureService;
 }
 public ManufactureController(IManufactureService manuService)
 {
     this.manuService = manuService;
 }
Example #6
0
 public ManufactureController(IManufactureService manuService)
 {
     this.manuService = manuService;
 }