namespace StoreData
{
public interface IAccount
{
///
/// Check the balance
///
decimal Balance { get; }
///
/// Add money to this account
///
/// The amount to add
void Add(decimal amount);
///
/// Remove money from this account
///
/// The amount to remove
void Remove(decimal amount);
}
}