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