public ExpenseRepository(IBudgetManagementContext context)
     : base(context)
 {
 }
 public BaseRepository(IBudgetManagementContext context)
 {
     Context = context;
 }
 public BaseRepository(IBudgetManagementContext context, IWhitelist whitelist)
 {
     Context   = context;
     Whitelist = whitelist;
 }
 public TransactionTypeRepository(IBudgetManagementContext context)
     : base(context)
 {
 }
Exemplo n.º 5
0
 public UserRepository(IBudgetManagementContext context)
     : base(context)
 {
 }
 public BudgetRepository(IBudgetManagementContext context)
     : base(context, new BudgetWhitelist())
 {
 }
Exemplo n.º 7
0
 public IncomeRepository(IBudgetManagementContext context)
     : base(context)
 {
 }
 public UnitOfWork(IBudgetManagementContext context)
 {
     _context = context;
 }
 public TransactionRepository(IBudgetManagementContext context)
     : base(context, new TransactionWhitelist())
 {
 }
 public SalaryEntryRepository(IBudgetManagementContext context)
     : base(context, new SalaryEntryWhitelist())
 {
 }