mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 21:42:38 +01:00
29 lines
838 B
C#
29 lines
838 B
C#
|
using Microsoft.Extensions.Options;
|
|||
|
using Sieve.Models;
|
|||
|
using Sieve.Services;
|
|||
|
using SieveTests.Entities;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SieveTests.Services
|
|||
|
{
|
|||
|
public class ApplicationSieveProcessor : SieveProcessor
|
|||
|
{
|
|||
|
public ApplicationSieveProcessor(IOptions<SieveOptions> options, ISieveCustomSortMethods customSortMethods, ISieveCustomFilterMethods customFilterMethods) : base(options, customSortMethods, customFilterMethods)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override SievePropertyMapper MapProperties(SievePropertyMapper mapper)
|
|||
|
{
|
|||
|
mapper.Property<Post>(p => p.Title)
|
|||
|
.CanSort()
|
|||
|
.CanFilter()
|
|||
|
.HasName("CustomTitleName");
|
|||
|
|
|||
|
return mapper;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|