コード例 #1
0
 public DataFeedManager(
     DataFeedManagerConfiguration configuration,
     IDownloadClient client,
     IDataFeedMapper mapper,
     IDataFeedService service)
 {
     this.configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
     this.client        = client ?? throw new ArgumentNullException(nameof(client));
     this.mapper        = mapper ?? throw new ArgumentNullException(nameof(mapper));
     this.service       = service ?? throw new ArgumentNullException(nameof(service));
 }
コード例 #2
0
        public async Task RunAsync()
        {
            var configuration = new DataFeedManagerConfiguration()
            {
                ServiceUrl        = @"http://data.fixer.io/api/latest?access_key=c2510f9a89d59e5f17e511157b0bcb41",
                StorageFolderPath = Path.Combine(Path.GetTempPath(), "ExchangeRates")
            };

            var mapper     = new DataFeedMapper();
            var repository = new DataFeedRepository(configuration, mapper);
            var service    = new DataFeedService(repository);

            using (var httpClient = new HttpClient())
            {
                var downloadClient = new HttpDownloadClient(httpClient);
                var manager        = new DataFeedManager(configuration, downloadClient, mapper, service);
                await manager.DownloadAsync();
            }
        }