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