示例#1
0
 public BasketRepository(IBasketContext context)
 {
     _context = context;
 }
示例#2
0
 public BasketUpdateModel(IBasketContext context)
 {
     _context = context;
 }
 public BasketRepository(IBasketContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
示例#4
0
 public BasketRepository(IBasketContext basketContext)
 {
     _basketContext = basketContext;
 }
 public BasketCartService(ICacheManager cacheManager, IProductContext productContext, IBasketContext basketContext)
 {
     _cacheManager   = cacheManager;
     _productContext = productContext;
     _basketContext  = basketContext;
 }
示例#6
0
 public BasketRepository(IBasketContext ctx)
 {
     _ctx = ctx;
 }
示例#7
0
 public BasketRepository(IBasketContext basketContext)
 {
     _basketContext = basketContext ?? throw new ArgumentNullException(nameof(basketContext));
 }
 public BasketBusiness(IBasketContext basketContext)
 {
     _basketContext = basketContext ?? throw new ArgumentNullException(nameof(basketContext));
 }
示例#9
0
 public BasketRepository(BasketContext context)
 {
     this.context = context;
 }
示例#10
0
 public BasketModel(IBasketContext context)
 {
     _context = context;
 }
示例#11
0
 public BasketRepo(IBasketContext basketContext)
 {
     _basketContext = basketContext;
 }
 public BasketRepository(IBasketContext basketContext)
 {
     this.context = basketContext;
 }