示例#1
0
 public Task <int> ValidarNombre()
 {
     try
     {
         var result = TurnoRepository.NameExistAsync(NombreTurno);
         return(result);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }