public InvoiceItemRepository(IInvoiceContext context) : base(context)
 {
 }
示例#2
0
 public InvoiceRepository()
 {
     Invctx = new InvoiceSQLQuery();
 }
 public SeedDataService(IInvoiceContext context)
 {
     this.context = context;
 }
示例#4
0
 public InvoiceRepository(IInvoiceContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
示例#5
0
 public InvoiceRepository()
 {
     Invctx = new SQLConnect();
 }
示例#6
0
文件: InvoiceLogic.cs 项目: Hrajr/DB
 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;
 }