Affecto.IdentityManagement.ApplicationServices.UserService.GetGroupsWithExternalGroup C# (CSharp) Метод

GetGroupsWithExternalGroup() приватный статический Метод

private static GetGroupsWithExternalGroup ( IReadOnlyCollection groups ) : IEnumerable
groups IReadOnlyCollection
Результат IEnumerable
        private static IEnumerable<Group> GetGroupsWithExternalGroup(IReadOnlyCollection<Group> groups)
        {
            return groups.Where(g => !string.IsNullOrEmpty(g.ExternalGroupName));
        }