Ejemplo n.º 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();
 }
Ejemplo n.º 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();
        }
Ejemplo n.º 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();
        }