示例#1
0
 public PlacesLookupService(
     IAzureMapsService azureMapsService,
     IOSPlacesApiService osPlacesApiService)
 {
     _azureMapsService   = azureMapsService;
     _osPlacesApiService = osPlacesApiService;
 }
 public IntegrationSpikes(
     IAzureBlobStorageService azureStorageAccountBlobStorageService,
     IAzureMapsService azureMapsService
     )
 {
     this._azureStorageAccountBlobStorageService = azureStorageAccountBlobStorageService;
     this._azureMapsService = azureMapsService;
 }
示例#3
0
 public TimeTrigger(IOrderDocumentRepository orderDocumentRepository, IAzureMapsService azureMapsService)
 {
     _orderDocumentRepository = orderDocumentRepository;
     _azureMapsService        = azureMapsService;
 }
示例#4
0
 public WeatherService(IAzureMapsService azureMapsService, ILogger <WeatherService> logger)
 {
     this.AzureMapsService = azureMapsService;
     this.Logger           = logger;
 }