Пример #1
0
 public SearchJobsQueryHandler(
     IApplicationContext context,
     IMapper mapper,
     IGoogleGeocodeService geocode
     )
 {
     _context = context;
     _mapper  = mapper;
     _geocode = geocode;
 }
Пример #2
0
 public GeocodeController(IGoogleGeocodeService api)
 {
     _api = api;
 }
Пример #3
0
 public EventRepository(IEventfulService eventfulSvc, IGoogleGeocodeService geocodeSvc)
 {
     _eventfulSvc = eventfulSvc;
     _geocodeSvc  = geocodeSvc;
 }
Пример #4
0
 public SearchHelper(IGoogleGeocodeService geocodeSvc)
 {
     _geocodeSvc = geocodeSvc;
 }