private void PreencherListaUfs(Classes.SistemaExterno sistemaExterno)
        {
            //Obtém a lista de ufs
            IList <Uf> ListaUFs = sistemaExterno.ListaPermissao.Where(x => x.Uf != null)
                                  .Select(x => new Uf()
            {
                ID = x.Uf.ID, Nome = x.Uf.Nome
            }).ToList <Uf>();

            ucPermissoes.PreencherListBoxComUfsGravadasNoBanco(ListaUFs);
        }
        private void PreencherCampos(Classes.SistemaExterno sistemaExterno)
        {
            if (sistemaExterno != null)
            {
                //Nome
                txtNome.Text = sistemaExterno.Nome;

                //Link
                if (!string.IsNullOrWhiteSpace(sistemaExterno.LinkSistemaExterno))
                {
                    txtLink.Text = sistemaExterno.LinkSistemaExterno;
                }

                txtDescricao.Text = sistemaExterno.Descricao;

                WebFormHelper.SetarValorNoRadioButtonList(sistemaExterno.Publico, rblPublico);
                WebFormHelper.SetarValorNoRadioButtonList(sistemaExterno.EnglishTown, rblEnglishTown);

                PreencherListasDoSistemaExterno(sistemaExterno);
            }
        }