示例#1
0
 public ProcessApiRequests(AllReadyContext context, IGeocodeService geocoder, IOptions <ApprovedRegionsSettings> approvedRegions, IBackgroundJobClient backgroundJobClient)
 {
     this.context             = context;
     this.geocoder            = geocoder;
     this.backgroundJobClient = backgroundJobClient;
     this.approvedRegions     = approvedRegions.Value;
 }
示例#2
0
 public ProcessApiRequests(AllReadyContext context, IMediator mediator, IGeocodeService geocoder, IOptions <ApprovedRegionsSettings> approvedRegions)
 {
     this.context         = context;
     this.mediator        = mediator;
     this.geocoder        = geocoder;
     this.approvedRegions = approvedRegions.Value;
 }