protected void Page_Load(object sender, EventArgs e)
        {
            proxyTM      = new TeacherModuleAdminServiceClient("WSHttpBinding_ITeacherModuleAdminService");
            proxyModule  = new ModuleAdminServiceClient("WSHttpBinding_IModuleAdminService");
            proxyOP      = new OpeningProgramAdminServiceClient("WSHttpBinding_IOpeningProgramAdminService");
            proxyGP      = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
            proxyProgram = new AcademicServiceClient("WSHttpBinding_IAcademicService");

            nombreModulo   = Request.Params["ModuleName"].ToString();
            nombrePrograma = Request.Params["ProgramName"].ToString();
            version        = Request.Params["ID"].ToString();

            long programaId    = proxyProgram.GetProgramID(nombrePrograma);
            int  versionId     = GetVersion(version);
            long aperturaId    = proxyOP.GetOpeningID(programaId, versionId);
            long moduleId      = proxyModule.GetModuleID(nombreModulo);
            long teachModuleId = proxyTM.GetTeacherModule(moduleId, aperturaId);
            long globalPlanId  = proxyGP.GetGlobalPlan(teachModuleId);

            Identificacion();
            Fundamentacion(globalPlanId);
            ObjetivoGeneral(globalPlanId);
            ObjetivoEspecifico(globalPlanId);
            ContenidoTematico(globalPlanId);
            MetodosEnseñanza(globalPlanId);
            MetodosAprendizaje(globalPlanId);
            FormasEvaluacion(globalPlanId);
            Bibliografia(globalPlanId);
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            proxyTM      = new TeacherModuleAdminServiceClient("WSHttpBinding_ITeacherModuleAdminService");
            proxyModule  = new ModuleAdminServiceClient("WSHttpBinding_IModuleAdminService");
            proxyOP      = new OpeningProgramAdminServiceClient("WSHttpBinding_IOpeningProgramAdminService");
            proxyGP      = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
            proxyProgram = new AcademicServiceClient("WSHttpBinding_IAcademicService");
            proxyEP      = new EvaluationPlanAdminServiceClient("WSHttpBinding_IEvaluationPlanAdminService");
            proxySM      = new StudentModuleAdminServiceClient("WSHttpBinding_IStudentModuleAdminService");
            proxyQ       = new QualificationAdminServiceClient("WSHttpBinding_IQualificationAdminService");

            nombreModulo        = Request.Params["ModuleName"].ToString();
            nombrePrograma      = Request.Params["ProgramName"].ToString();
            version             = Request.Params["ID"].ToString();
            lbl_nameModulo.Text = "MODULO: " + nombreModulo;

            long programaId    = proxyProgram.GetProgramID(nombrePrograma);
            int  versionId     = GetVersion(version);
            long aperturaId    = proxyOP.GetOpeningID(programaId, versionId);
            long moduleId      = proxyModule.GetModuleID(nombreModulo);
            long teachModuleId = proxyTM.GetTeacherModule(moduleId, aperturaId);

            Session["TeachModID"] = teachModuleId;
            long globalPlanId     = proxyGP.GetGlobalPlan(teachModuleId);
            long evaluationPlanId = proxyEP.GetEvaluationPlanID(globalPlanId);

            Session["Evaluacion"]   = evaluationPlanId;
            Session["GlobalPlanID"] = globalPlanId;

            ListaEstudiantesModulo(moduleId, versionId);
        }
예제 #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            proxyProgram       = new AcademicServiceClient("WSHttpBinding_IAcademicService");
            proxyOpening       = new OpeningProgramAdminServiceClient("WSHttpBinding_IOpeningProgramAdminService");
            proxy              = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
            proxyTeacherMdoule = new TeacherModuleAdminServiceClient("WSHttpBinding_ITeacherModuleAdminService");
            proxyModule        = new ModuleAdminServiceClient("WSHttpBinding_IModuleAdminService");

            nombreModulo   = Request.Params["ModuleName"].ToString();
            nombrePrograma = Request.Params["ProgramName"].ToString();
            versionID      = Request.Params["ID"].ToString();

            Session["Modulo"]   = nombreModulo;
            Session["Programa"] = nombrePrograma;
            Session["Version"]  = versionID;

            //Obteniendo el ID del Programa Abierto
            version = GetVersion((string)Session["Version"]);
            //Obteniendo el ID del Programa
            programaID = proxyProgram.GetProgramID((string)Session["Programa"]);
            //Obteniendo el ID del OpeningProgram
            openingID = proxyOpening.GetOpeningID(programaID, version);
            //Obteniendo el ID del Modulo
            moduloID = proxyModule.GetModuleID((string)Session["Modulo"]);
            //Obteniendo el ID de la Asignación Docente Módulo
            teachModuleID = proxyTeacherMdoule.GetTeacherModule(moduloID, openingID);
            //lbl_Mensaje.Text = "Hasta aqui todo OK" + teachModuleID;
            Session["TeachingModule"] = teachModuleID + "";

            lbl_ProgramaPostgrado.Text = "MÓDULO: " + nombreModulo;
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     proxyProgram       = new AcademicServiceClient("WSHttpBinding_IAcademicService");
     proxyOpening       = new OpeningProgramAdminServiceClient("WSHttpBinding_IOpeningProgramAdminService");
     proxy              = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
     proxyTeacherMdoule = new TeacherModuleAdminServiceClient("WSHttpBinding_ITeacherModuleAdminService");
     proxyModule        = new ModuleAdminServiceClient("WSHttpBinding_IModuleAdminService");
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            proxyTM      = new TeacherModuleAdminServiceClient("WSHttpBinding_ITeacherModuleAdminService");
            proxyModule  = new ModuleAdminServiceClient("WSHttpBinding_IModuleAdminService");
            proxyOP      = new OpeningProgramAdminServiceClient("WSHttpBinding_IOpeningProgramAdminService");
            proxyGP      = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
            proxyProgram = new AcademicServiceClient("WSHttpBinding_IAcademicService");
            proxyEP      = new EvaluationPlanAdminServiceClient("WSHttpBinding_IEvaluationPlanAdminService");

            nombreModulo   = Request.Params["ModuleName"].ToString();
            nombrePrograma = Request.Params["ProgramName"].ToString();
            version        = Request.Params["ID"].ToString();

            long programaId    = proxyProgram.GetProgramID(nombrePrograma);
            int  versionId     = GetVersion(version);
            long aperturaId    = proxyOP.GetOpeningID(programaId, versionId);
            long moduleId      = proxyModule.GetModuleID(nombreModulo);
            long teachModuleId = proxyTM.GetTeacherModule(moduleId, aperturaId);
            long globalPlanId  = proxyGP.GetGlobalPlan(teachModuleId);

            Session["GlobalPlanID"] = globalPlanId;
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     proxyGP = new GlobalPlanAdminServiceClient("WSHttpBinding_IGlobalPlanAdminService");
 }