public Customer Put(Customer cust)
 {
     try
     {
         return(context.CustomerUpdate(cust));
     }
     catch (Exception ex)
     {
         return(null);
     }
 }