public PurchaseInvoicesRepository(IPurchasesDbContext dbContext, ShopErrorDescriber describer = null)
 {
     this._db        = dbContext;
     _errorDescriber = describer ?? new ShopErrorDescriber();
 }
Ejemplo n.º 2
0
 public PurchasesDbRepositories(IPurchasesDbContext context)
 {
     _context = context;
 }