public GetCityWeatherForecastsHandler(
     ICityWeatherForecastService cityWeatherForecastService,
     IMapper mapper)
 {
     _cityWeatherForecastService = cityWeatherForecastService;
     _mapper = mapper;
 }
 public GotWeatherForecastListener(
     ICityWeatherForecastService cityWeatherForecastService,
     IMapper mapper,
     ILogger <GotWeatherForecastListener> logger,
     IPublishEndpoint publishEndpoint)
 {
     _cityWeatherForecastService = cityWeatherForecastService;
     _mapper          = mapper;
     _logger          = logger;
     _publishEndpoint = publishEndpoint;
 }
 public GetCityWeatherForecastPaginationHandler(ICityWeatherForecastService cityWeatherForecastService)
 {
     _cityWeatherForecastService = cityWeatherForecastService;
 }