public ProductController(ShoeServices shoeServices, BrandServices brandServices, QuantityService quantityService) { _shoesService = shoeServices; _brandServices = brandServices; _quantityService = quantityService; }
public AdminController(BrandServices brandServices, ShoeServices shoesService) { _brandServices = brandServices; _shoesService = shoesService; }
public HomeController(ILogger <HomeController> logger, ShoeServices shoeService, BrandServices brandServices) { _logger = logger; _shoesService = shoeService; }
public ShoesController(ShoeServices shoesService) { _shoesService = shoesService; }
public CheckoutController(ShoeServices shoeService, IConfiguration config) { this.shoeService = shoeService; _config = config; }
public AllProductsController(ShoeServices shoeService) { _shoesService = shoeService; }