public ExpensePaymentRepository(CashflowContext context) : base(context)
 {
 }
Exemplo n.º 2
0
 protected Repository(CashflowContext context)
 {
     Context = context;
     _entity = Context.Set <TEntity>();
 }
Exemplo n.º 3
0
 public UserRepository(CashflowContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 public UnitOfWork(CashflowContext cashflowContext, int connectionTimeout = 5)
 {
     _cashflowContext   = cashflowContext;
     _connectionTimeout = connectionTimeout;
 }
Exemplo n.º 5
0
 public InboxRepository(CashflowContext context) : base(context)
 {
 }