Exemplo n.º 1
0
 void Handle(Input.Add action)
 {
     if (this.NewExpense.Amount > 0)
     {
         this.NewExpense.Data.Spender = this.Data;
         Transaction.Commit();
         this.NewExpense.Data = new Expense()
         {
             Amount = 1
         };
     }
 }
Exemplo n.º 2
0
 public void Handle(Input.Add action)
 {
     RedirectUrl = $"{ResourcePath}//new=true";
 }