Exemplo n.º 1
0
 public void CargarAsignaturaPorGrado(int id, ListBox cbm)
 {
     try
     {
         DPlanClase d = new DPlanClase();
         d.BuscarListaAsignaturaGrado(id, cbm);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public void IngresarPlanClase(EplanClase pc)
 {
     try
     {
         DPlanClase d = new DPlanClase();
         d.IngresarPlanClase(pc);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 3
0
 public List <EplanClase> ListaPlandeClase()
 {
     try
     {
         DPlanClase        d     = new DPlanClase();
         List <EplanClase> lista = d.ListaPlanClase();
         return(lista);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 4
0
 public List <EMateriasDocentes> BuscarDocentePorAsignatura(int AsignaturaId)
 {
     try
     {
         DPlanClase d = new DPlanClase();
         List <EMateriasDocentes> lista = d.BuscarDocenteAsignatura(AsignaturaId);
         return(lista);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }