예제 #1
0
 /// <summary>
 /// Obtiene una lista de ProblemaSintoma
 /// </summary>
 /// <returns></returns>
 public IList <ProblemaSintomaInfo> ObtenerTodos()
 {
     try
     {
         Logger.Info();
         return(problemaSintomaDAL.ObtenerTodos().ToList());
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }