Beispiel #1
0
 public TransactionRepository(NiboDbContext context) : base(context)
 {
 }
Beispiel #2
0
 public BankRepository(NiboDbContext context) : base(context)
 {
 }
 public BankTransactionsRepository(NiboDbContext context) : base(context)
 {
 }
 public Repository(NiboDbContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }
Beispiel #5
0
 protected Repository(NiboDbContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }
 public BankStatementRepositoty(NiboDbContext context) : base(context)
 {
 }
Beispiel #7
0
 public TransactionRepository(NiboDbContext context)
 => _context = context ?? throw new ArgumentNullException(nameof(context));