Exemplo n.º 1
0
 public ActionResult AddIncome(double amount, string description, int accountId, string source)
 {
     transactionService.AddIncome(amount, description, source, accountId);
     budgetService.UpdateCoffers(amount);
     return(null);
 }