Beispiel #1
0
 public Customer(int id, string name, string surname, string email, string telefoonnummer, Address address, Employee salesman, Roof roof) : base(id, name, surname, email, telefoonnummer, address)
 {
     Salesman = salesman;
     Roof     = roof;
 }
Beispiel #2
0
 public Customer(string name, string surname, string email, string telefoonnummer, Address address, Roof roof) : base(name, surname, email, telefoonnummer, address)
 {
     Roof = roof;
 }