mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
24 lines
558 B
C#
24 lines
558 B
C#
|
using System;
|
|||
|
using TINK.Model.Bike;
|
|||
|
|
|||
|
namespace TINK.Model.Bikes.Bike
|
|||
|
{
|
|||
|
public static class BikeExtension
|
|||
|
{
|
|||
|
public static LockType GetLockType(this LockModel model)
|
|||
|
{
|
|||
|
switch (model)
|
|||
|
{
|
|||
|
case LockModel.ILockIt:
|
|||
|
return LockType.Bluethooth;
|
|||
|
|
|||
|
case LockModel.Sigo:
|
|||
|
return LockType.Backend;
|
|||
|
|
|||
|
default:
|
|||
|
throw new ArgumentException($"Unsupported lock model {model} detected.");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|