public List <Materia> GetAll() { try { return(materiaData.GetAll()); } catch (Exception Ex) { throw Ex; } }
public List <Materia> GetAll() { try { return(MateriaData.GetAll()); } catch (Exception Ex) { Exception ExcepcionManejada = new Exception("Error al recuperar lista de Materias", Ex); throw ExcepcionManejada; } }
public List <Materia> GetAll() { try { List <Materia> materias = materiaAdapter.GetAll(); return(materias); } catch (Exception Ex) { Exception ExcepcionManejada = new Exception("Error al recuperar lista de materias", Ex); throw ExcepcionManejada; } }
public List <Materia> GetAll() { MateriaAdapter materia = new MateriaAdapter(); return(materia.GetAll()); }
public List <Materia> GetAll() { return(MateriaData.GetAll()); }
public DataTable GetAll(int idplan) { return(MateriaData.GetAll(idplan)); }