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) { }
public UserRepository(IBudgetManagementContext context) : base(context) { }
public BudgetRepository(IBudgetManagementContext context) : base(context, new BudgetWhitelist()) { }
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()) { }