Made test stuff not generic

This commit is contained in:
Biarity
2018-02-07 14:43:09 +10:00
parent 135e7255a8
commit fe7234f571
4 changed files with 7 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace SieveTests.Services
{
public class SieveCustomFilterMethodsOfPosts : ISieveCustomFilterMethods<Post>
public class SieveCustomFilterMethods : ISieveCustomFilterMethods
{
public IQueryable<Post> IsNew(IQueryable<Post> source, string op, string value)
{

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace SieveTests.Services
{
public class SieveCustomSortMethodsOfPosts : ISieveCustomSortMethods<Post>
public class SieveCustomSortMethods : ISieveCustomSortMethods
{
public IQueryable<Post> Popularity(IQueryable<Post> source, bool useThenBy, bool desc)
{