Beispiel #1
0
        private void btnAgregar_Click(object sender, EventArgs e)
        {
            Categorias        catLocal;
            CategoriasNegocio negocio = new CategoriasNegocio();

            try
            {
                catLocal = new Categorias();

                catLocal.Nombre = txtNombre.Text;

                negocio.agregarCategoria(catLocal);
                cargarGrilla();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }