示例#1
0
 public bool CorreoExiste([FromUri] string correo)
 {
     try
     {
         correo = correo.Replace("~", ".");
         return(blu.CorreoExiste(correo));
     }
     catch (Exception e)
     {
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e.Message));
     }
 }