Esempio n. 1
0
 private Contact(int id, String name, Customer customer)
 {
     Id = id;
     Name = name;
     Customer = customer;
 }
Esempio n. 2
0
 public Contacts(Customer customer)
 {
     Customer = customer;
     ContactsList = new List<Contact>();
 }