Ejemplo n.º 1
0
 protected BaseKindManufacturerProductsController(
     IManufacturerProductsServices manufacturerProductsServices,
     IProductsService productsService,
     string controllerName)
 {
     this._controllerName         = controllerName;
     ManufacturerProductsServices = manufacturerProductsServices;
     ProductsService = productsService;
 }
 public FoodsManufacturerProductsController(
     IManufacturerProductsServices manufacturerProductsServices,
     IProductsService productsService)
     : base(manufacturerProductsServices, productsService, ControllersConstants.FoodsManufacturerProducts)
 {
 }