public ProductCategoryManagerController(IRepsoitory <ProductCategory> context) { this.context = context; }
public WelcomeViewComponent(IRepsoitory <Student> repsoitory) { _repsoitory = repsoitory; }
public ProductManagerController(IRepsoitory <Product> productContext, IRepsoitory <ProductCategory> productCategoryContext) { context = productContext; productCategories = productCategoryContext; }
public HomeController(IRepsoitory <Student> repsoitory) { _repsoitory = repsoitory; }
public BasketService(IRepsoitory <Product> ProductContext, IRepsoitory <Basket> BasketContext) { this.basketContext = BasketContext; this.productContext = ProductContext; }