public LocationDataService(
            IAssetStorageService assetStorageService,
            ICsvParsingService csvParsingService
            )
        {
            _assetStorageService = assetStorageService;
            _csvParsingService   = csvParsingService;

            _randomNumberGenerator = new Random();
        }
Пример #2
0
 public AssetController(
     IOptionsMonitor <SchematicSettings> settings,
     IAssetRepository assetRepository,
     IImageAssetRepository imageRepository,
     IAssetStorageService assetStorageService)
 {
     _settings            = settings;
     _assetRepository     = assetRepository;
     _imageRepository     = imageRepository;
     _assetStorageService = assetStorageService;
 }
 public CachedLocationDataService(
     IAssetStorageService assetStorageService,
     ICsvParsingService csvParsingService,
     ICacheService cacheService
     ) : base(
         assetStorageService,
         csvParsingService
         )
 {
     _cacheService = cacheService;
 }