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); }
public Contract(Private privatee, List<Car> carListContract = null) { this.privatee = privatee; }
public void RegisterSale(Private privatee, List<Car> carListContract) { }