public UnitService(ICoffeShopContext context)
 {
     _context = context;
 }
 /// <inheritdoc />
 public void RefreshContext(ICoffeShopContext context)
 {
     _context = context;
 }
Пример #3
0
 public SupplierService(ICoffeShopContext context)
 {
     _context = context;
 }
 public CustomerService(ICoffeShopContext context)
 {
     _context = context;
 }
Пример #5
0
 public AreaService(ICoffeShopContext context)
 {
     _context = context;
 }
Пример #6
0
 public OfficeService(ICoffeShopContext context)
 {
     _context = context;
 }
 public ProductTypeService(ICoffeShopContext context)
 {
     _context = context;
 }
Пример #8
0
 public DetailBillSellService(ICoffeShopContext context)
 {
     _context = context;
 }
Пример #9
0
 public TableService(ICoffeShopContext context)
 {
     _context = context;
 }