public _00007_AsignarAgenteSubSector() { InitializeComponent(); _agenteSubSectorServicio = new AgenteSubSectorServicio(); _subSectorServicio = new SubSectorServicio(); _sectorServicio = new SectorServicio(); this.WindowState = FormWindowState.Maximized; this.imgBuscarNoAsignados.Image = PresentacionBase.Imagenes.BotonBuscar; this.imgBuscarAsignados.Image = PresentacionBase.Imagenes.BotonBuscar; this.txtBuscarAsignados.Enter += Control_Enter; this.txtBuscarNoAsignado.Enter += Control_Enter; this.txtBuscarAsignados.Leave += Control_Leave; this.txtBuscarNoAsignado.Leave += Control_Leave; this.btnActualizar.Image = PresentacionBase.Imagenes.BotonActualizar; this.btnEjecutar.Image = PresentacionBase.Imagenes.BotonEjecutar; this.btnSalir.Image = PresentacionBase.Imagenes.BotonSalir; PoblarComboBox(this.cmbSector, _sectorServicio.ObtenerTodo(), "Descripcion"); if (this.cmbSector.Items.Count > 0) { PoblarComboBox(this.cmbSubSector, _subSectorServicio.ObtenerTodo(Convert.ToInt64(this.cmbSector.SelectedValue)), "Descripcion"); } }
public _00003_SubSectores() : base("Consulta de Sub-Sectores", "Lista de Sub-Sectores", new _00004_ABM_SubSector()) { InitializeComponent(); _subSectorServicio = new SubSectorServicio(); this.btnImprimir.Visible = false; this.WindowState = FormWindowState.Maximized; }
public _00021_ReporteMensual() { InitializeComponent(); WindowState = FormWindowState.Maximized; _agenteServicio = new AgenteServicio(); _sectorServicio = new SectorServicio(); _subsectorServicio = new SubSectorServicio(); _agenteSeleccionado = null; _filaAgente = -1; }
public _00004_ABM_SubSector() : base("ABM de Sub-Sectores") { InitializeComponent(); _subSectorServicio = new SubSectorServicio(); _sectorServicio = new SectorServicio(); this.nudCodigo.Enter += Control_Enter; this.txtDescripcion.Enter += Control_Enter; this.txtAbreviatura.Enter += Control_Enter; this.nudCodigo.Leave += Control_Leave; this.txtDescripcion.Leave += Control_Leave; this.txtAbreviatura.Leave += Control_Leave; PoblarComboBox(this.cmbSector, _sectorServicio.ObtenerTodo(), "Descripcion"); this.txtDescripcion.Validating += (sender, e) => Validacion.VerificarNoVacios(sender, e, errorProviderMensaje); this.txtAbreviatura.Validating += (sender, e) => Validacion.VerificarNoVacios(sender, e, errorProviderMensaje); }