Пример #1
0
 public ShoppingCartController(IShoppingCartService cartService, IAdminProductService productService, PCStoreDbContext db, UserManager <User> userService)
 {
     this.cartService    = cartService;
     this.productService = productService;
     this.db             = db;
     this.userService    = userService;
 }
 public AdminUserService(PCStoreDbContext db)
 {
     this.db = db;
 }
Пример #3
0
 public AdminProductService(PCStoreDbContext db)
 {
     this.db = db;
 }