public CategoriesController(CategoryManger CategoryPram, ProductManger ProductMangerPram)
 {
     this._ProductManger  = ProductMangerPram;
     this._CategoryManger = CategoryPram;
 }
예제 #2
0
 public ProductController(ProductManger productMangerPram, CategoryManger categoryMangerPram, SupplierManger supplierMangerPram)
 {
     this._categoryManger = categoryMangerPram;
     this._productManger  = productMangerPram;
     this._supplierManger = supplierMangerPram;
 }