public Boolean IniciarForm(ItensEntrada ie) { this.ie = ie; popularCampos(); ShowDialog(); return retorno; }
private void bAdicionarProduto_Click(object sender, EventArgs e) { ItensEntrada ie = new ItensEntrada(); ie.Produtos = p; ie.Entradas = this.e; ie.Quantidade = Convert.ToInt32(tbQntd.Text); p.Quantidade += Convert.ToInt32(tbQntd.Text); //Alterar o estoque do item Conn.db.ItensEntrada.Add(ie); Conn.db.SaveChanges(); popularTabela(); }