コード例 #1
0
 public DailyWeatherFileParser(string filePath, IDifferentiableFactory <int> dailyWeatherFactory, ILoggingService loggingService)
 {
     _filePath            = filePath;
     _dailyWeatherFactory = dailyWeatherFactory;
     _loggingService      = loggingService;
 }
コード例 #2
0
 public SeasonResultFileParser(string filePath, IDifferentiableFactory <int> seasonResultFactory, ILoggingService loggingService)
 {
     _filePath            = filePath;
     _seasonResultFactory = seasonResultFactory;
     _loggingService      = loggingService;
 }