示例#1
0
 public LegacyAssetsCacheUpdater(
     ILegacyAssetsService legacyAssetsService,
     ILegacyAssetsCache legacyAssetsCache,
     IMessageProducer <AssetUpsertedEvent> assetUpsertedPublisher,
     ILog log,
     IList <string> assetTypesWithZeroInterestRate)
 {
     _legacyAssetsService    = legacyAssetsService;
     _legacyAssetsCache      = legacyAssetsCache;
     _assetUpsertedPublisher = assetUpsertedPublisher;
     _log = log;
     _assetTypesWithZeroInterestRate = assetTypesWithZeroInterestRate;
 }
示例#2
0
 public LegacyAssetCache(ILegacyAssetsService legacyAssetsService, ILog log)
 {
     _legacyAssetsService = legacyAssetsService;
     _log = log;
 }