Example #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     //Boton Seleccionar Cliente
     frmCliente oFrmCliente = new frmCliente();
     oFrmCliente.onClienteSeleccionado += new EventHandler<TbClienteBE>(
         oFrmCliente_OnClienteSeleccionado);
     oFrmCliente.Show();
 }
Example #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            //Boton mostrar formulario Clientes
            frmCliente ofrmCliente = new frmCliente();

            ofrmCliente.OnClienteSeleccionado += new EventHandler <Entity.TbClienteBE>(MetodoCliente);
            ofrmCliente.Show();
        }
Example #3
0
        private void button1_Click(object sender, EventArgs e)
        {
            ValidatorFactory valFactory =
                EnterpriseLibraryContainer.Current.GetInstance <ValidatorFactory>();

            ItemBEValidator = valFactory.CreateValidator <ItemBE>();


            //Boton Seleccionar Cliente
            frmCliente oFrmCliente = new frmCliente();

            oFrmCliente.onClienteSeleccionado += new EventHandler <TbClienteBE>(
                oFrmCliente_OnClienteSeleccionado);
            oFrmCliente.Show();
        }