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"; } }