public List <Curso> GetAll() { try { return(cursoData.GetAll()); } catch (Exception Ex) { throw Ex; } }
public List <Curso> GetAll() { try { return(CursoData.GetAll()); } catch (Exception Ex) { Exception ExcepcionManejada = new Exception("Error al recuperar lista de cursos", Ex); throw ExcepcionManejada; } }
public bool ValidarDelete(int idComision) { CursoAdapter ca = new CursoAdapter(); List <Curso> listaCursos = ca.GetAll(); foreach (Curso c in listaCursos) { if (c.IdComision == idComision) { return(false); } } return(true); }
public List <Curso> GetAll() { try { List <Curso> cursos = cursoAdapter.GetAll(); return(cursos); } catch (Exception Ex) { Exception ExcepcionManejada = new Exception("Error al recuperar lista de Cursos", Ex); throw ExcepcionManejada; } }
public List <Curso> GetAll() { CursoAdapter curso = new CursoAdapter(); return(curso.GetAll()); }
public List <Curso> GetAll() { return(cursoData.GetAll()); }
public DataTable DameCursos(int idCom) { return(CursoData.GetAll(idCom)); }
public List <Curso> GetAll() { List <Curso> lista = CursoData.GetAll(); return(lista); }