public void RegisterOwner(string username, string password, string email)
 {
     using (DelightServiceClient service = new DelightServiceClient())
     {
         service.RegisterOwner(username, password, email);
     }
 }