Пример #1
0
 public LocationBackgroundService(
     ILocationServiceHandler serviceHandler,
     ILogger <LocationBackgroundService> logger) :
     base(typeof(LocationBackgroundService), logger)
 {
     _serviceHandler = serviceHandler ?? throw new ArgumentNullException(nameof(serviceHandler));
 }
Пример #2
0
 public void SetLocationServiceHandler(ILocationServiceHandler locationServiceHandler)
 {
     Rock.Mobile.Util.Debug.WriteToLog(string.Format("LocationManagerService::Set LocationServiceHandler"));
     LocationServiceHandler = locationServiceHandler;
 }
Пример #3
0
 public LocationManagerConnection(ILocationServiceHandler serviceHandler)
 {
     ServiceHandler = serviceHandler;
 }