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