Exemple #1
0
 public GetWeatherForecastsQueryHandler(IWeatherForecastRepo weatherForecastRepo, IMapper mapper)
 {
     _weatherForecastRepo = weatherForecastRepo;
     _mapper = mapper;
 }
Exemple #2
0
 public WeatherForecastController(IWeatherForecastRepo repo)
 {
     _repo = repo;
 }