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