Example #1
0
 public BankAccount(ICardUser owner) : base(owner)
 {
     this.AccountNumber = GenerateAccountNumber();
 }
Example #2
0
 protected Account(ICardUser owner)
 {
     Balance = 0;
     Owner   = owner;
 }