public Client(string id, Name name, Address address, string phone, string mobile, string email) { this.id = id; this.name = name; this.address = address; this.phone = phone; this.mobile = mobile; this.email = email; this.listConstruction = new ListConstruction(); }
public Client() { this.id = ""; this.name = new Name(); this.address = new Address(); this.phone = ""; this.mobile = ""; this.email = ""; this.listConstruction = new ListConstruction(); }