Пример #1
0
 public OrderLogic(NowVNSimulatorContext dbContext, ICartLogic cartLogic,
                   ICustomerLogic customerLogic, IProductLogic productLogic, IOrderDetailLogic orderDetailLogic)
     : base(dbContext)
 {
     this.customerLogic    = customerLogic;
     this.cartLogic        = cartLogic;
     this.productLogic     = productLogic;
     this.orderDetailLogic = orderDetailLogic;
 }
Пример #2
0
 public CartLogic(NowVNSimulatorContext dbContext) : base(dbContext)
 {
 }
Пример #3
0
 public CustomerLogic(JwtSecurityTokenProvider provider, NowVNSimulatorContext dbContext) : base(dbContext)
 {
     this.jwtTokenProvider = provider;
 }
Пример #4
0
 public OrderDetailLogic(IProductLogic productLogic, NowVNSimulatorContext dbContext) : base(dbContext)
 {
     this.productLogic = productLogic;
 }
Пример #5
0
 public BaseRepository(NowVNSimulatorContext dbContext)
 {
     this.dbContext = dbContext;
 }
Пример #6
0
 public CategoriesController(NowVNSimulatorContext context)
 {
     _context = context;
 }
Пример #7
0
 public ProductLogic(NowVNSimulatorContext dbContext) : base(dbContext)
 {
 }