Пример #1
0
 private void BtnAgregar_Click(object sender, EventArgs e)
 {
     if (txtIdTipoLocalidad.TextLength <= 0 || txtTipo.TextLength <= 0)
     {
         MessageBox.Show("Faltan datos por ingresar");
     }
     else { 
     _CN_TiposLocalidad.AgregarTiposLocalidad(txtTipo.Text);
     MostrarTiposLocalidades();
     Limpiartxt();
 }
 }
Пример #2
0
 private void BtnAgregar_Click(object sender, EventArgs e)
 {
     _CN_TiposLocalidad.AgregarTiposLocalidad(txtTipo.Text);
     MostrarTiposLocalidades();
     Limpiartxt();
 }