public void CreateContact(Customer customer)
 {
     customerRepository.AddContact(customer);
     customerRepository.Save();
 }