Esempio n. 1
0
 public List <DocenteCurso> GetAll(Curso cur)
 {
     try
     {
         return(dcDatos.GetAll(cur));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Esempio n. 2
0
 public List <DocenteCurso> GetAll()
 {
     try
     {
         return(docenteCursoAdapter.GetAll());
     }
     catch (Exception ex)
     {
         Exception ExcepcionManejada = new Exception("Error al recuperar lista", ex);
         throw ExcepcionManejada;
     }
 }
Esempio n. 3
0
 public List <DocenteCurso> GetAll()
 {
     try
     {
         return(DocenteCursoData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de usuarios", Ex);
         throw ExcepcionManejada;
     }
 }
Esempio n. 4
0
 public List <Entidades.DocenteCurso> GetAll()
 {
     return(data.GetAll());
 }
Esempio n. 5
0
 public DataTable DameCursosDocente(int idDocente)
 {
     return(DocenteCursoData.GetAll(idDocente));
 }
Esempio n. 6
0
 public List <DocenteCurso> GetAll()
 {
     return(DocenteCursoData.GetAll());
 }