/// <summary>
        /// Gets the list of all fixtures that have changed in the last 24 hours
        /// </summary>
        /// <param name="culture">A <see cref="CultureInfo"/> specifying the language or a null reference to use the languages specified in the configuration</param>
        /// <returns>A list of all fixtures that have changed in the last 24 hours</returns>
        public async Task <IEnumerable <IFixtureChange> > GetFixtureChangesAsync(CultureInfo culture = null)
        {
            culture = culture ?? _defaultCultures.First();

            Log.LogInformation($"Invoked GetFixtureChangesAsync: [Cultures={culture.TwoLetterISOLanguageName}].");

            var result = (await _dataRouterManager.GetFixtureChangesAsync(culture).ConfigureAwait(false))?.ToList();

            Log.LogInformation($"GetFixtureChangesAsync returned {result?.Count} results.");
            return(result);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Gets the list of all fixtures that have changed in the last 24 hours
        /// </summary>
        /// <param name="after">A <see cref="DateTime"/> specifying the starting date and time for filtering</param>
        /// <param name="sportId">A <see cref="URN"/> specifying the sport for which the fixtures should be returned</param>
        /// <param name="culture">A <see cref="CultureInfo"/> specifying the language or a null reference to use the languages specified in the configuration</param>
        /// <returns>A list of all fixtures that have changed in the last 24 hours</returns>
        public async Task <IEnumerable <IFixtureChange> > GetFixtureChangesAsync(DateTime?after, URN sportId, CultureInfo culture = null)
        {
            culture = culture ?? _defaultCultures.First();

            LogInt.Info($"Invoked GetFixtureChangesAsync: After={after}, SportId={sportId}, Culture={culture.TwoLetterISOLanguageName}.");

            var result = (await _dataRouterManager.GetFixtureChangesAsync(after, sportId, culture).ConfigureAwait(false))?.ToList();

            LogInt.Info($"GetFixtureChangesAsync returned {result?.Count} results.");
            return(result);
        }