Exemplo n.º 1
0
 public AccountEntity(string name, string surname, string email, string passport = null)
 {
     AccountHolder = new HolderEntity(name, email);
     BonusPoints   = 30;
 }
Exemplo n.º 2
0
 public AccountEntity(HolderEntity customer)
 {
     AccountHolder = customer;
     BonusPoints   = 30;
 }