public List <Docente> ListarDocentes()
 {
     try
     {
         ServicioRemoting.ServicioDocente _objServicioD = new ServicioRemoting.ServicioDocente();
         return(_objServicioD.Listar());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public List<Docente> ListarDocentes()
 {
     try
     {
         ServicioRemoting.ServicioDocente _objServicioD = new ServicioRemoting.ServicioDocente();
         return _objServicioD.Listar();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }