public ModificarRol(Rol _rolModif)
 {
     InitializeComponent();
     this.rolModif        = _rolModif;
     this.rolDB           = new RolDB();
     this.funcDB          = new FuncionalidadDB();
     this.funcionalidades = new List <FuncionalidaXRol>();
 }
Example #2
0
 public AltaDeRol()
 {
     InitializeComponent();
     this.rol             = new Rol();;
     this.rolDB           = new RolDB();
     this.funcDB          = new FuncionalidadDB();
     this.funcionalidades = new List <Funcionalidad>();
 }
Example #3
0
 public ListadoRoles()
 {
     this.rolDB = new RolDB();
     InitializeComponent();
 }
Example #4
0
 public Login()
 {
     this.rolDB            = new RolDB();
     this.rol_seleccionado = true;
     InitializeComponent();
 }