Automated teller machine emulation.
namespace SergeyDrozdovATM.BLL
{
public class Account
{
public int Id { get; set; }
public int UserId { get; set; }
public Currency Currency { get; set; }
public decimal Balance { get; set; }
}
}