Exemple #1
0
 public void RegisterPrivateCustomer(string age, string sex, string name, string phone, string personalAddress, string city, string postCode, string country)
 {
     Private privateObj = new Private(age, sex, name, phone, personalAddress, city, postCode, country);
     listPrivates.Add(privateObj);
     SavePrivateCustomer(listPrivates);
 }
Exemple #2
0
 public Contract(Private privatee, List<Car> carListContract = null)
 {
     this.privatee = privatee;
 }
Exemple #3
0
 public void RegisterSale(Private privatee, List<Car> carListContract)
 {
 }