Example #1
0
 public List <Materia> GetAll()
 {
     try
     {
         return(materiaData.GetAll());
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
Example #2
0
 public List <Materia> GetAll()
 {
     try
     {
         return(MateriaData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de Materias", Ex);
         throw ExcepcionManejada;
     }
 }
Example #3
0
 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;
     }
 }
Example #4
0
        public List <Materia> GetAll()
        {
            MateriaAdapter materia = new MateriaAdapter();

            return(materia.GetAll());
        }
Example #5
0
 public List <Materia> GetAll()
 {
     return(MateriaData.GetAll());
 }
Example #6
0
 public DataTable GetAll(int idplan)
 {
     return(MateriaData.GetAll(idplan));
 }