private void btngravar_Click(object sender, EventArgs e)
        {
            CAMADAS.MODEL.Materiais mat    = new CAMADAS.MODEL.Materiais();
            CAMADAS.DAL.Material    dalmat = new CAMADAS.DAL.Material();

            mat.id         = Convert.ToInt32(txtid.Text);
            mat.nome       = txtnome.Text;
            mat.quantidade = Convert.ToInt32(txtqtde.Text);
            mat.peso       = txtpeso.Text;
            mat.valor      = Convert.ToSingle(txtvalor.Text);
            mat.observacao = txtoberservacao.Text;



            if (txtnome.Text == string.Empty && txtvalor.Text == string.Empty)
            {
                MessageBox.Show("Preencha os Campos do Formulario!!!");
            }
            else
            {
                string msg;
                if (OP == 'I')
                {
                    msg = "Deseja Confirmar Inserção dos Dados?";
                }
                else
                {
                    msg = "Deseja Confirmar Alteração dos Dados?";
                }

                DialogResult resp;
                resp = MessageBox.Show(msg, "Gravar", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);

                if (resp == DialogResult.OK)
                {
                    if (OP == 'I')
                    {
                        dalmat.Insert(mat);
                    }
                    else
                    {
                        dalmat.Update(mat);
                    }
                }

                dtgmateriais.DataSource = dalmat.Select();

                OP = 'V';
                habilitacampos(false);


                txtid.Text           = "00";
                txtnome.Text         = "";
                txtqtde.Text         = "";
                txtpeso.Text         = "";
                txtvalor.Text        = "";
                txtoberservacao.Text = "";
                habilitacampos(false);
            }
        }
        private void btnexcluir_Click(object sender, EventArgs e)
        {
            if (Convert.ToInt32(txtid.Text) > 0)
            {
                CAMADAS.MODEL.Materiais mat    = new CAMADAS.MODEL.Materiais();
                CAMADAS.DAL.Material    dalmat = new CAMADAS.DAL.Material();

                mat.id = Convert.ToInt32(txtid.Text);
                DialogResult result;
                result = MessageBox.Show("Deseja Remover o cliente Selecionado?",
                                         "Remover Cliente",
                                         MessageBoxButtons.YesNo,
                                         MessageBoxIcon.Question,
                                         MessageBoxDefaultButton.Button1);
                if (result == DialogResult.Yes)
                {
                    dalmat.Delete(mat);
                    MessageBox.Show("Material removido com Sucesso...");
                }
                else
                {
                    MessageBox.Show("Não confirmada Remoção do ...", "Remover");
                }


                dtgmateriais.DataSource = dalmat.Select(); //atualizar lista de registro
                habilitacampos(false);
            }
            else
            {
                MessageBox.Show("Não há registro Selecionado", "Remover");
            }


            txtid.Text           = "00";
            txtnome.Text         = "";
            txtqtde.Text         = "";
            txtpeso.Text         = "";
            txtvalor.Text        = "";
            txtoberservacao.Text = "";
            OP = 'V';
            habilitacampos(false);
        }