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