mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
25 lines
537 B
C#
25 lines
537 B
C#
using System;
|
|
|
|
namespace TINK.ViewModel
|
|
{
|
|
public interface IInUseStateInfoProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets reserved info display text.
|
|
/// </summary>
|
|
/// <returns>Display text</returns>
|
|
string GetReservedInfo(
|
|
TimeSpan? p_oRemainingTime,
|
|
string p_strStation = null,
|
|
string p_strCode = null);
|
|
|
|
/// <summary>
|
|
/// Gets booked info display text.
|
|
/// </summary>
|
|
/// <returns>Display text</returns>
|
|
string GetBookedInfo(
|
|
DateTime? p_oFrom,
|
|
string p_strStation = null,
|
|
string p_strCode = null);
|
|
}
|
|
}
|