Beispiel #1
0
 public BeaconManager(IRepository repository) : base(repository)
 {
     this.gdelegate = new BeaconLocationManagerDelegate();
     this.manager   = new CLLocationManager
     {
         Delegate = this.gdelegate
     };
 }
Beispiel #2
0
 public BeaconRangingManager(IServiceProvider services)
 {
     this.gdelegate = new BeaconLocationManagerDelegate(services);
     this.manager   = new CLLocationManager
     {
         Delegate = this.gdelegate
     };
 }
Beispiel #3
0
 public BeaconMonitoringManager(IServiceProvider services, IRepository repository)
 {
     this.repository = repository;
     this.gdelegate  = new BeaconLocationManagerDelegate(services);
     this.manager    = new CLLocationManager
     {
         Delegate = this.gdelegate
     };
 }