public List <Expense> MonthlyExpense(string month, string year) { List <Expense> expenses = expenseGateway.MonthlyReport(month, year); return(expenses); }
public List <Expense> MonthlyIncome(string month, string year) { return(expenseGateway.MonthlyReport(month, year)); }