public StocktakingPlanFacade(IDBContext dbContext) { _db = dbContext; _service = new StocktakingPlanService(_db); _billService = new BillSequenceService(_db); _inventoryService = new StoreInventoryService(_db); _stocktakingService = new StocktakingService(_db); }
public StocktakingFacade(IDBContext dbContext) { _db = dbContext; _billService = new BillSequenceService(_db); _stocktakingService = new StocktakingService(_db); }