void _bonosForm_OnBonoSelected(object sender, BonoSelectedEventArgs e)
 {
     _bono        = e.Bono;
     txtBono.Text = _bono.Numero.ToString();
     _bonosForm.Close();
     btnRegistrar.Show();
 }
Example #2
0
 void _bonosForm_OnBonoSelected(object sender, BonoSelectedEventArgs e)
 {
     _bonoFarmacia = e.Bono;
     txtBono.Text  = _bonoFarmacia.Numero.ToString();
     _bonosForm.Hide();
     btnGuardar.Visible = true;
 }
Example #3
0
 void _bonosForm_OnBonoSelected(object sender, BonoSelectedEventArgs e)
 {
     _bonoFarmacia = e.Bono;
     txtBono.Text  = _bonoFarmacia.Numero.ToString();
     _bonosForm.Hide();
     panelMed1.Show();
 }