Exemple #1
0
 //copy constructor
 public CustomerAccountIndividual(CustomerAccountIndividual newCost)
 {
     this.accountID = newCost.getAccountID();
     this.cardNo    = newCost.getCardNo();
     this.custEmail = newCost.getCustEmail();
 }
Exemple #2
0
 public void addNewCostumerAccount(CustomerAccountIndividual newCost)
 {
     this.CostumerAccountsList.Add(newCost.getAccountID(), newCost);
 }