public List <Grupo> GetGruposAtivos() { return(_DAO.Find(pg => pg.Ativo == true).OrderBy(g => g.NomeGrupo).ToList <Grupo>()); }