Exemplo n.º 1
0
 public List <Materia> GetAll()
 {
     try
     {
         return(materiaData.GetAll());
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
Exemplo n.º 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;
     }
 }
Exemplo n.º 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;
     }
 }
Exemplo n.º 4
0
        public List <Materia> GetAll()
        {
            MateriaAdapter materia = new MateriaAdapter();

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