예제 #1
0
        public bool AprobarSolicitud(System.UInt32 IdUsuario)
        {
            clsMaestrante Maestrante = new clsMaestrante(IdUsuario);
            clsAcademico  Academico  = new clsAcademico(HttpContext.Current.User.Identity.Name);

            Maestrante.IdAcademicoAutoriza = Academico.Id;
            bool boResult = Maestrante.Actualizar();

            if (boResult)
            {
                Maestrante.sendWelcomeMail();
            }
            return(boResult);
        }
예제 #2
0
 public bool Actualizar(clsMaestrante.struMaestrante MaestranteData)
 {
     try
     {
         clsMaestrante Maestrante = new clsMaestrante();
         // Poner el Id del académico que lo registra.
         clsUsuario Usuario = new clsUsuario(HttpContext.Current.User.Identity.Name);
         MaestranteData.IdAcademicoAutoriza = Usuario.Id;
         Maestrante.getDataFromStruct(MaestranteData);
         bool boResult = Maestrante.Actualizar();
         Maestrante = null;
         return(boResult);
     }
     catch (System.Exception Ex)
     {
         throw new System.Exception("No se actualizaron los datos del docente.", Ex);
     }
 }