public CompanyRepository(InvoiceDbContext context) : base(context)
 {
     _context = context;
 }
 public Repository(InvoiceDbContext context)
 {
     _context = context;
     _set     = context.Set <T>();
 }
Exemple #3
0
 public ItemRepository(InvoiceDbContext context) : base(context)
 {
     _context = context;
 }