public static int Add(CondicionIva entity) { try { ICondicionIvaRepository _repository = new CondicionIvaRepository(); return _repository.Add(entity); } catch(Exception e) { throw e; } }
private void RegistrarCondicionIva() { try { CondicionIva condicion_iva = new CondicionIva(); condicion_iva.activo = Convert.ToInt32(ckbActivo.Checked); condicion_iva.condicion_iva = txtCondicionIva.Text; int resultado = CondicionesIva.Add(condicion_iva); if (resultado > 0) { MessageBox.Show("Los datos se registraron correctamente.", "Información", MessageBoxButtons.OK, MessageBoxIcon.Information); LimpiarControles(); } else { MessageBox.Show("Ocurrio un error al registrar los datos. Intente Nuevamente.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch(Exception e) { MessageBox.Show("Error : " + e.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }