private void btnAdd_Click(object sender, EventArgs e) { if (txtNome.Text == "") { mensagemInfoExibir("Insira o nome de Produto !", titulo); txtNome.Focus(); return; } if (txtPreco.Text == "") { mensagemInfoExibir("Informe o preço de Produto !", titulo); txtNome.Focus(); return; } using (IConnection Conexion = new Connection()) { IDAO <Produto> dao = new DAOProduto(Conexion); Produto prod = new Produto();//Objeto tipo Modulos(tabela) string codnew = dao.CurremRegVal(); /* * if (int.Parse(codnew)+ 1 < 10) * cli.Id = 0 +int.Parse(codnew) + 1; * else * cli.Id = int.Parse(codnew) + 1; */ prod.Nome = txtNome.Text; prod.preço = decimal.Parse(txtPreco.Text); // gravo los datos como registro en la tabla modulos dao.Insert(prod); DefaultObjetos(); } LlenarGrid(); }