13 lines
303 B
C#
13 lines
303 B
C#
using Gos.Infrastructure.Search.Dtos;
|
|
using Nest;
|
|
|
|
namespace Gos.Infrastructure.Search.Indexes
|
|
{
|
|
public class ConcordanceIndexProvider : BaseIndexProvider<EsConcordanceDto>
|
|
{
|
|
public ConcordanceIndexProvider(IElasticClient client)
|
|
: base(client)
|
|
{
|
|
}
|
|
}
|
|
} |