public string NameTest(string name)
 {
     Customer c = new Customer();
     c.Name = name;
     return (c.Name);
 }
 public string ContactPhoneTest(string phone)
 {
     Customer c = new Customer();
     c.ContactPhone = phone;
     return (c.ContactPhone);
 }