private void btnCadastrar_Click(object sender, EventArgs e)
 {
     BLL.Estoque f = new BLL.Estoque();
     f.QuantidadeAtual = Convert.ToInt32(numericUpDown1.Value);
     f.CodigoProduto   = Codigo;
     f.AtualizarEstoque();
     MessageBox.Show("Estoque atualizado");
     Close();
 }
Пример #2
0
 private void RegistrarEntrada(object o, EventArgs e)
 {
     BLL.Estoque est = new BLL.Estoque();
     est.CodigoProduto = Convert.ToInt32(cbProduto.SelectedValue);
     est.Quantidade    = Convert.ToInt32(txtQuant.Value);
     est.Data          = Convert.ToDateTime(txtDataEntrada.Text);
     est.RegistrarEntradaProd();
     est.AtualizarEstoque();
     MessageBox.Show("Registrado com sucesso!!");
     Close();
 }