private void deletar()
        {
            try
            {
                //VARIAVEL QUE ARMAZENA O CODIGO DA TABELA
                String deletar = dgvVer.CurrentRow.Cells[0].Value.ToString();

                //INSTANCIAS
                DocasDTO DOCADTO = new DocasDTO();
                DocasBLL DOCABLL = new DocasBLL();

                //ENVIA O CODIGO SELECIONADO PARA A DTO
                DOCADTO.Codigo = Convert.ToInt16(deletar);

                //EXECUTA A AÇÃO DA BLL/MODEL
                DOCABLL.deletarDoca(DOCADTO);
            }
            catch (Exception erro)
            {
                MetroFramework.MetroMessageBox.Show(Owner, "Erro ao tentar alterar os dados!" + erro);
            }
        }