Beispiel #1
0
 public ProductCategory(IProductCategoryServices productCategoryServices)
 {
     _productCategoryServices = productCategoryServices;
 }
 public InventoryController(IProductCategoryServices productCategoryServices, IInventoryServices inventoryServices)
 {
     _productCategoryServices = productCategoryServices;
     _inventoryServices       = inventoryServices;
 }