using Sieve.Services; using SieveUnitTests.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SieveUnitTests.Services { public class SieveCustomSortMethods : ISieveCustomSortMethods { public IQueryable Popularity(IQueryable source, bool useThenBy, bool desc) { var result = useThenBy ? ((IOrderedQueryable)source).ThenBy(p => p.LikeCount) : source.OrderBy(p => p.LikeCount) .ThenBy(p => p.CommentCount) .ThenBy(p => p.DateCreated); return result; } } }