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