public WeatherForecastApiDriverExtension(
     IAppDriverContext driverContext,
     string tenantId,
     string userId,
     IFlurlClient httpClient,
     Maybe <ForecastCreationResultDto> lastReportResult,
     Maybe <WeatherForecastDto> lastInputForecastDto)
 {
     _driverContext        = driverContext;
     _tenantId             = tenantId;
     _userId               = userId;
     _httpClient           = httpClient;
     _lastReportResult     = lastReportResult;
     _lastInputForecastDto = lastInputForecastDto;
 }