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