예제 #1
0
 public List <DocenteCurso> GetAll(Curso cur)
 {
     try
     {
         return(dcDatos.GetAll(cur));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #2
0
 public List <DocenteCurso> GetAll()
 {
     try
     {
         return(docenteCursoAdapter.GetAll());
     }
     catch (Exception ex)
     {
         Exception ExcepcionManejada = new Exception("Error al recuperar lista", ex);
         throw ExcepcionManejada;
     }
 }
예제 #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;
     }
 }
예제 #4
0
 public List <Entidades.DocenteCurso> GetAll()
 {
     return(data.GetAll());
 }
예제 #5
0
 public DataTable DameCursosDocente(int idDocente)
 {
     return(DocenteCursoData.GetAll(idDocente));
 }
예제 #6
0
 public List <DocenteCurso> GetAll()
 {
     return(DocenteCursoData.GetAll());
 }