public ProductsController(IProductsService productsService, IProductTypesService productTypesService, ICloudinaryService cloudinaryService, IOrdersService ordersService)
 {
     this.productsService     = productsService;
     this.productTypesService = productTypesService;
     this.cloudinaryService   = cloudinaryService;
     this.ordersService       = ordersService;
 }
Example #2
0
 public HomeController(IProductTypesService productTypesService)
 {
     this.productTypesService = productTypesService;
 }
Example #3
0
 public ProductTypesController(IProductTypesService productTypesService)
 {
     _productTypesService = productTypesService;
 }