Exemplo n.º 1
0
 public GetWeatherForecastsQueryHandler(IWeatherForecastRepo weatherForecastRepo, IMapper mapper)
 {
     _weatherForecastRepo = weatherForecastRepo;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public WeatherForecastController(IWeatherForecastRepo repo)
 {
     _repo = repo;
 }