Beispiel #1
0
 private void btnSalvar_Click(object sender, EventArgs e)
 {
     if (this.Validar())
     {
         ProdutoBE produtoBE = this.PreencherDados();
         this.Salvar(produtoBE);
         MessageBox.Show("Produto salvo com sucesso.", "Sucesso", MessageBoxButtons.OK, MessageBoxIcon.Information);
         this.Hide();
         frmListaProduto frmListaProduto = new frmListaProduto();
         frmListaProduto.Show();
     }
 }
        private void btnProduto_Click(object sender, EventArgs e)
        {
            frmListaProduto frmListaProduto = new frmListaProduto();

            frmListaProduto.Show();
        }