public LocationDataService( IAssetStorageService assetStorageService, ICsvParsingService csvParsingService ) { _assetStorageService = assetStorageService; _csvParsingService = csvParsingService; _randomNumberGenerator = new Random(); }
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; }