public RepeatableExpensesController(ExpenseAppContext context)
 {
     _context = context;
 }
Example #2
0
 public MonthlyExpensesController(ExpenseAppContext context)
 {
     _context = context;
 }
Example #3
0
 public UserService(IHashingService hashingService, ExpenseAppContext expenseAppContext, IJWTService jwtService)
 {
     _hashingService = hashingService;
     _context        = expenseAppContext;
     _userJwtService = jwtService;
 }
Example #4
0
 public CurrentExpensesController(ExpenseAppContext context)
 {
     _context = context;
 }