protected void btnIncluir_Click(object sender, EventArgs e)
        {
            SGSServico sgsServico = new SGSServico();

            SGSOrcamento = PegarDadosView();
            SGSOrcamento.OrcamentoNatureza = sgsServico.IncluirItemOrcamento(SGSOrcamento.OrcamentoNatureza);
            btnRemover.Enabled = true;

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

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

            PreencherDadosView();

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