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;
 }