Exemple #1
0
 public string Exist(string mail)
 {
     try
     {
         return(_userService.Exist(mail) ? "Existe" : "No existe");
     }
     catch (Exception e)
     {
         return(e.Message);
     }
 }