Exemple #1
0
 public UsersController(IMapsStorageService mapsStorageService, IAzureMapsApiService azureMapsApiService, AzureMapsOptions azureMapsOptions)
 {
     _mapsStorageService  = mapsStorageService;
     _azureMapsApiService = azureMapsApiService;
     _azureMapsOptions    = azureMapsOptions;
 }
 public GeofenceController(IAzureMapsApiService azureMapsApiService)
 {
     _azureMapsApiService = azureMapsApiService;
 }
Exemple #3
0
 public MapsStorageService(IAzureMapsApiService azureMapsApiService, AzureMapsOptions azureMapsOptions)
 {
     _azureMapsOptions    = azureMapsOptions;
     _azureMapsApiService = azureMapsApiService;
     FakeUsers            = GetFakeUsers(_azureMapsOptions.FakeUserDefaultLatitude, _azureMapsOptions.FakeUserDefaultLongitude);
 }
Exemple #4
0
 public MapsController(IAzureMapsApiService azureMapsApiService, AzureOptions options)
 {
     _azureMapsApiService = azureMapsApiService;
 }
Exemple #5
0
 public LocationController(IAzureMapsApiService azureMapsApiService, AzureOptions options)
 {
     _azureMapsApiService = azureMapsApiService;
     _options             = options;
 }