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 }; } }
public void Handle(Input.Add action) { RedirectUrl = $"{ResourcePath}//new=true"; }