Exemplo n.º 1
0
 public ProductFacade(IDBContext dbContext)
 {
     _db                     = dbContext;
     _productService         = new ProductService(this._db);
     _adjustSalePriceService = new AdjustSalePriceService(this._db);
     _processHistoryService  = new ProcessHistoryService(this._db);
     _sequenceService        = new BillSequenceService(this._db);
 }