Skip to content

Instantly share code, notes, and snippets.

@masleshov
Last active January 13, 2023 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masleshov/60c71dbb488f73278af48399c57a7ca9 to your computer and use it in GitHub Desktop.
Save masleshov/60c71dbb488f73278af48399c57a7ca9 to your computer and use it in GitHub Desktop.
namespace Encapsulation
{
public class BankAccount
{
private string _number;
private int _clientId;
private decimal _amountInUsd;
private decimal _amountInEur;
public void DepositUsd(decimal amount)
{
if (amount <= 0)
{
throw new ArgumentException("Values less or equal zero are not allowed!");
}
_amountInUsd += amount;
_amountInEur += ConvertToEur(amount);
}
public void DepositEur(decimal amount)
{
if (amount <= 0)
{
throw new ArgumentException("Values less or equal zero are not allowed!");
}
_amountInEur += amount;
_amountInUsd += ConvertToUsd(amount);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment