mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
18 lines
646 B
C#
18 lines
646 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Plugin.BLE.Abstractions.Contracts;
|
|
using TINK.Model.Device;
|
|
|
|
namespace TINK.Services.BluetoothLock.BLE
|
|
{
|
|
public class LockItByScanServicePolling : LockItByScanServiceBase, ILocksService
|
|
{
|
|
public LockItByScanServicePolling(ICipher cipher, IBluetoothLE bluetoothLE, Func<Task<bool>> isLocationPermissionMissingDelegate, Func<bool> isLocationRequiredAndOffDelegate) : base(
|
|
cipher,
|
|
(bleDevice, authInfo, adapter) => LockItPolling.Authenticate(bleDevice, authInfo, adapter, cipher),
|
|
bluetoothLE,
|
|
isLocationPermissionMissingDelegate,
|
|
isLocationRequiredAndOffDelegate)
|
|
{ }
|
|
}
|
|
}
|