Example #1
0
 public ProductController(ShoeServices shoeServices, BrandServices brandServices,
                          QuantityService quantityService)
 {
     _shoesService    = shoeServices;
     _brandServices   = brandServices;
     _quantityService = quantityService;
 }
Example #2
0
 public AdminController(BrandServices brandServices, ShoeServices shoesService)
 {
     _brandServices = brandServices;
     _shoesService  = shoesService;
 }
Example #3
0
 public HomeController(ILogger <HomeController> logger, ShoeServices shoeService, BrandServices brandServices)
 {
     _logger       = logger;
     _shoesService = shoeService;
 }
Example #4
0
 public ShoesController(ShoeServices shoesService)
 {
     _shoesService = shoesService;
 }
Example #5
0
 public CheckoutController(ShoeServices shoeService, IConfiguration config)
 {
     this.shoeService = shoeService;
     _config          = config;
 }
Example #6
0
 public AllProductsController(ShoeServices shoeService)
 {
     _shoesService = shoeService;
 }