/// <inheritdoc />
 public async Task <IList <Price> > GetCurrentPrices(IList <int> companyIds)
 {
     return(await Get(CacheKeys.CurrentPrices(companyIds),
                      async() => await _baseRepository.GetCurrentPrices(companyIds)));
 }