Initial commit

This commit is contained in:
2022-07-06 21:35:05 +02:00
commit b2494052ff
97220 changed files with 2449256 additions and 0 deletions
@@ -0,0 +1,16 @@
using Gos.Infrastructure.Search.Indexes;
using Gos.Infrastructure.Search.QueryBuilders;
using Nest;
namespace Gos.Infrastructure.Search.Aggregations
{
public class SpeakerLanguageAggregator : BaseAggregator
{
public SpeakerLanguageAggregator(IElasticClient elasticClient, IIndexProviderFactory indexProviderFactory, IQueryBuilderFactory queryBuilderFactory)
: base(elasticClient, indexProviderFactory, queryBuilderFactory)
{
}
protected override string FieldName => "speakerLanguageId";
}
}