public FormCadPessoa(bool _isAdmin, string user) { InitializeComponent(); isAdmin = _isAdmin; logedUser = user; common.PreencheCombos_Pessoa(cmbRAJ, cmbCJ, cmbCidade, cmbCargo, cmbSetor, cmbCapacitacao); }
private void AtualizaPreencheInicial() { common.PreencheCombos_Pessoa(cmbRAJ, cmbCJ, cmbCidade, cmbCargo, cmbSetor, cmbCapacitacao); using (capdeEntities context = new capdeEntities()) { IEnumerable <dynamic> RAJ = context.RAJs.Where(x => x.IsExcluido == false) .OrderByDescending(x => x.NomeRaj == StringBase.TODOS.ToString()).ThenBy(x => x.NomeRaj) .Select(x => new { x.RajId, x.NomeRaj }).ToList(); tscRAJ = common.PreencheCombo(tscRAJ, RAJ, "RajId", "NomeRaj"); } }