public OrdersController(HoneyStoreContext context)
 {
     ordersService = new OrdersService(context);
 }
 public WarehouseService(HoneyStoreContext context)
 {
     _context = context;
 }
 public CartsController(HoneyStoreContext context)
 {
     cartsService = new CartsService(context);
 }
Beispiel #4
0
 public StatisticsService(HoneyStoreContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public WarehouseController(HoneyStoreContext context)
 {
     warehouseService = new WarehouseService(context);
 }
Beispiel #6
0
 public StatisticsController(HoneyStoreContext context)
 {
     statisticsService = new StatisticsService(context);
 }
 public ClientsService(HoneyStoreContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
Beispiel #8
0
 public CartsService(HoneyStoreContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public ClientsController(HoneyStoreContext context, IConfiguration configuration)
 {
     clientsService = new ClientsService(context, configuration);
 }
 public OrdersService(HoneyStoreContext context)
 {
     _context = context;
 }