Example #1
0
 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;
 }
Example #4
0
 public HomeController(IRepsoitory <Student> repsoitory)
 {
     _repsoitory = repsoitory;
 }
Example #5
0
 public BasketService(IRepsoitory <Product> ProductContext, IRepsoitory <Basket> BasketContext)
 {
     this.basketContext  = BasketContext;
     this.productContext = ProductContext;
 }