Exemple #1
0
        public TUsuario(int id)
        {
            this.Id = id;
            this.Miembro = new USeguridad.Miembro();
            this.Grupos = Miembro.Grupos;
            this.Nombre = string.Empty;
            this.PClave = string.Empty;
            this.Clave = string.Empty;
            this.Habilitado = true;

        }
Exemple #2
0
 public TUsuario(string nombre, string pclave, string clave, bool habilitado){
     this.Nombre = nombre;
     this.PClave = pclave;
     this.Clave = clave;
     this.Habilitado = habilitado;
     this.Miembro = new USeguridad.Miembro();
     this.Grupos = Miembro.Grupos;
 }