public string LeerId(string json)
 {
     try
     {
         Negocio.Usuario user = new Negocio.Usuario(json);
         if (user.LeerId())
         {
             return(user.Serializar());
         }
         else
         {
             return(null);
         }
     }
     catch (Exception)
     {
         return(null);
     }
 }