public GetVolunteerCoordinatesHandler(IMemDistCache <IEnumerable <CachedVolunteerDto> > memDistCache, IVolunteerCache volunteerCache, IVolunteersFilteredByMinDistanceGetter volunteersFilteredByMinDistanceGetter)
 {
     _memDistCache   = memDistCache;
     _volunteerCache = volunteerCache;
     _volunteersFilteredByMinDistanceGetter = volunteersFilteredByMinDistanceGetter;
 }
 public HelperService(IVolunteerCache volunteerCache, IDistanceCalculator distanceCalculator, IRepository repository)
 {
     _volunteerCache     = volunteerCache;
     _distanceCalculator = distanceCalculator;
     _repository         = repository;
 }
 public VolunteersFilteredByMinDistanceGetter(IVolunteerCache volunteerCache, IMinDistanceFilter minDistanceFilter)
 {
     _volunteerCache    = volunteerCache;
     _minDistanceFilter = minDistanceFilter;
 }