Skip to content

Instantly share code, notes, and snippets.

@masleshov
Last active January 13, 2023 16:47
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/58ac834c3c8e7442c2119ada4214dc0a to your computer and use it in GitHub Desktop.
Save masleshov/58ac834c3c8e7442c2119ada4214dc0a 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)
{
... some logic ...
}
public void DepositEur(decimal amount)
{
... some logic ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment