Пример #1
0
 public LoginVistaModelo()
 {
     this.Email       = "davidsm54";
     this.Password    = "******";
     this.BtnActivo   = true;
     this.apiServicio = new APIServicio();
 }
Пример #2
0
 public TemaVistaModelo(int opcion, temaModelo tema, int idCurso)
 {
     this.tema        = tema;
     this.idCurso     = idCurso;
     this.apiServicio = new APIServicio();
     instancia        = this;
     //0 Indica que se debe de mostrar el registro del tema
     //1 Indica que se debe de mostrar la subida del archivo
     if (opcion == 0 && tema == null)
     {
         this.EsRegistro  = true;
         this.BotonActivo = true;
     }
     else
     {
         this.EsActividad = true;
         this.BotonActivo = true;
         this.cargaActividades();
     }
 }