public InvoiceItemRepository(IInvoiceContext context) : base(context) { }
public InvoiceRepository() { Invctx = new InvoiceSQLQuery(); }
public SeedDataService(IInvoiceContext context) { this.context = context; }
public InvoiceRepository(IInvoiceContext context) { _context = context ?? throw new ArgumentNullException(nameof(context)); }
public InvoiceRepository() { Invctx = new SQLConnect(); }
public InvoiceLogic() { _context = new InvoiceContext(); }
/// <summary> /// Initializes a new instance of the <see cref="Repository"/> class. /// </summary> /// <param name="context">The context.</param> protected Repository(IInvoiceContext context) { Context = context; }
public InvoiceAPIController(IInvoiceContext invoiceContext) { this._invoiceContext = invoiceContext; }
public InvoiceRepository(IInvoiceContext context) : base(context) { this.invoiceContext = context; }
public SecretRepository(IInvoiceContext context) { this.context = context; }