public ExpenseController(IExpenseContext context) { _context = context; }
public GetTotalIncomesQueryHandler(IExpenseContext context) { _context = context; }
public AddCategoryCommandHandler(IExpenseContext context, IS3FileUploader fileUploader) { _context = context; _fileUploader = fileUploader; }
public GetExpensesByCategoryQueryHandler(IExpenseContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public AddTransactionCommandHandler(IExpenseContext context) { _context = context; }