Example #1
0
 public RecurringExpenseController(ExpenseItContext context, IMapper mapper)
 {
     _service = new RecurringExpenseService(context, mapper);
 }
Example #2
0
 public RecurringExpenseController(RecurringExpenseService service) => _service = service;