private void btnCnfirmar_Click(object sender, EventArgs e)
        {
            if (textNomeProjeto.Text != String.Empty || textNomeProjeto.Text.Equals(" "))
            {
                Projeto projeto = new Projeto();
                projeto.nome = textNomeProjeto.Text;
                projeto.data_Abertura =  DateTime.Parse(textData.Text);

                models.OperacaoProjeto p = new models.OperacaoProjeto();
                p.gravar(projeto);

            }
            else
            {
                MessageBox.Show("Os campos com (*) são obrigatório");
            }
        }