示例#1
0
 public PGestorUsuario()
 {
     InitializeComponent();
     negocioR = new NRol();
     negocioU = new NUsuario();
     cargarTabla();
     cargarCombo();
 }
示例#2
0
文件: FrmRol.cs 项目: Net-zar/KPSOFT
 private void Listar()
 {
     try
     {
         DgvRol.DataSource = NRol.Listar();
     }catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }
示例#3
0
 //PARA CARGAR EL ROL EN EL COMBOBOX
 private void CargarRol()
 {
     try
     {
         CboRol.DataSource    = NRol.Listar();
         CboRol.ValueMember   = "id_rol";
         CboRol.DisplayMember = "nombre";
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }
示例#4
0
 private void Listar()
 {
     try
     {
         DgvListado.DataSource = NRol.Listar();
         this.Formato();
         labelTotal.Text = "Total registros:" + Convert.ToString(DgvListado.Rows.Count);
     }
     catch (Exception e)
     {
         MessageBox.Show(e.Message + e.StackTrace);
     }
 }
示例#5
0
 private void CargaRol()
 {
     try
     {
         cmbrol.DataSource    = NRol.Listar();
         cmbrol.DisplayMember = "rol_descrip";
         cmbrol.ValueMember   = "idrol";
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }
示例#6
0
 void CargarRol()
 {
     try
     {
         NRol        n     = new NRol();
         List <ERol> lista = n.ListaRol();
         dataGridView1.DataSource         = lista;
         dataGridView1.Columns[0].Visible = false;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#7
0
文件: Users.cs 项目: fredreyes/SGA
 void cargarRol()
 {
     try
     {
         NRol        n        = new NRol();
         List <ERol> listarol = n.ListaRol();
         cbmRol.DataSource    = listarol;
         cbmRol.DisplayMember = "Descripcion";
         cbmRol.ValueMember   = "RolId";
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#8
0
 private void Listar()
 {
     try
     {
         //Llenamos el DataGrid con el metodo Listar de la Clase Ncategoria
         DgvListado.DataSource = NRol.Listar();
         //Aplicamos el formato al datagrid con el metodo "Formato"
         this.Formato();
         //Le asignamos texto al Label total Registros
         LblTotal.Text = "Total Registros: " + Convert.ToString(DgvListado.Rows.Count);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }
示例#9
0
 private void CargarRol()
 {
     try
     {
         //Obtenemos los datos
         CboRol.DataSource = NRol.Listar();
         //Obtenemos el valor apartir del ID
         CboRol.ValueMember = "idrol";
         //Mostramos el texto a partir del nombre del rol
         CboRol.DisplayMember = "nombre";
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }
示例#10
0
 private void btningresar_Click(object sender, EventArgs e)
 {
     try
     {
         if (Bandera == 0)
         {
             //Guardar
             ERol rol = new ERol();
             NRol n   = new NRol();
             rol.Descripcion    = txtdescripcion.Text;
             rol.Matricula      = Convert.ToBoolean(chkmatricula.Checked ? 1 : 0);
             rol.Administracion = Convert.ToBoolean(chkadministrador.Checked ? 1 : 0);
             rol.Calificaciones = Convert.ToBoolean(chkcalificaciones.Checked ? 1 : 0);
             rol.Funcionarios   = Convert.ToBoolean(chkFuncionarios.Checked ? 1 : 0);
             n.IngresarRol(rol);
             MessageBox.Show("Rol creado con exito", "SGA", MessageBoxButtons.OK, MessageBoxIcon.Information);
             Limpiar();
             CargarRol();
         }
         if (Bandera == 1)
         {
             //Modificar
             ERol rol = new ERol();
             NRol n   = new NRol();
             rol.RolId          = Rolid;
             rol.Descripcion    = txtdescripcion.Text;
             rol.Matricula      = Convert.ToBoolean(chkmatricula.Checked ? 1 : 0);
             rol.Administracion = Convert.ToBoolean(chkadministrador.Checked ? 1 : 0);
             rol.Calificaciones = Convert.ToBoolean(chkcalificaciones.Checked ? 1 : 0);
             rol.Funcionarios   = Convert.ToBoolean(chkFuncionarios.Checked ? 1 : 0);
             n.ModificarRol(rol);
             MessageBox.Show("Rol Modificado con exito", "SGA", MessageBoxButtons.OK, MessageBoxIcon.Information);
             Limpiar();
             CargarRol();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "SGA", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }