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