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