Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created February 5, 2018 22:36
Embed
What would you like to do?
public class BankAccountState
{
public decimal Balance { get; set; }
public BankAccountState Apply(Deposited evnt)
{
Balance += evnt.Amount;
return this;
}
public BankAccountState Apply(Withdrawn evnt)
{
Balance -= evnt.Amount;
return this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment