protected void btnRemover_Click(object sender, EventArgs e)
        {
            SGSServico objSGSServico = new SGSServico();
            SGSOrcamento = PegarDadosView();

            if (objSGSServico.ExcluirOrcamentoNatureza(SGSOrcamento.OrcamentoNatureza.CodigoOrcamento.Value, SGSOrcamento.OrcamentoNatureza.CodigoNatureza.Value))
            {
                btnRemover.Enabled = false;
                SGSOrcamento.OrcamentoNatureza = null;
                PreencherDadosView();

                SGSOrcamento.OrcamentoNaturezaLista = objSGSServico.ListarOrcamentoNatureza(SGSOrcamento.Orcamento.CodigoOrcamento.Value);

                lblVisualizarItem.Visible = true;
                gridOrcamento.Visible = true;
                gridOrcamento.DataSource = SGSOrcamento.OrcamentoNaturezaLista;
                gridOrcamento.DataBind();

                PreencherDadosView();

                MessageBox1.ShowMessage("Item do Orçamento excluído com sucesso!", MessageBoxType.Success);
            }
        }