mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
49 lines
2 KiB
C#
49 lines
2 KiB
C#
|
using System;
|
|||
|
using TINK.Model.Connector;
|
|||
|
using TINK.Services.Geolocation;
|
|||
|
using TINK.Model.State;
|
|||
|
using TINK.View;
|
|||
|
using TINK.Model.User;
|
|||
|
using TINK.Model.Device;
|
|||
|
|
|||
|
namespace TINK.ViewModel.Bikes.Bike.CopriLock.RequestHandler
|
|||
|
{
|
|||
|
public abstract class Base : BC.RequestHandler.Base<Model.Bikes.Bike.CopriLock.IBikeInfoMutable>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Constructs the reqest handler base.
|
|||
|
/// </summary>
|
|||
|
/// <param name="selectedBike">Bike which is reserved or for which reservation is canceled.</param>
|
|||
|
/// <param name="smartDevice">Provides info about the smart device (phone, tablet, ...)</param>
|
|||
|
/// <param name="bikesViewModel">View model to be used for progress report and unlocking/ locking view.</param>
|
|||
|
public Base(
|
|||
|
Model.Bikes.Bike.CopriLock.IBikeInfoMutable selectedBike,
|
|||
|
string buttonText,
|
|||
|
bool isCopriButtonVisible,
|
|||
|
Func<bool> isConnectedDelegate,
|
|||
|
Func<bool, IConnector> connectorFactory,
|
|||
|
IGeolocation geolocation,
|
|||
|
Func<IPollingUpdateTaskManager> viewUpdateManager,
|
|||
|
ISmartDevice smartDevice,
|
|||
|
IViewService viewService,
|
|||
|
IBikesViewModel bikesViewModel,
|
|||
|
IUser activeUser) : base(selectedBike, buttonText, isCopriButtonVisible, isConnectedDelegate, connectorFactory, viewUpdateManager, smartDevice, viewService, bikesViewModel, activeUser)
|
|||
|
{
|
|||
|
Geolocation = geolocation
|
|||
|
?? throw new ArgumentException($"Can not construct {GetType().Name}-object. Parameter {nameof(geolocation)} must not be null.");
|
|||
|
}
|
|||
|
|
|||
|
protected IGeolocation Geolocation { get; }
|
|||
|
|
|||
|
|
|||
|
/// <summary> Gets the bike state. </summary>
|
|||
|
public abstract override InUseStateEnum State { get; }
|
|||
|
|
|||
|
public string LockitButtonText { get; protected set; }
|
|||
|
|
|||
|
public bool IsLockitButtonVisible { get; protected set; }
|
|||
|
|
|||
|
public string ErrorText => string.Empty;
|
|||
|
}
|
|||
|
}
|