2021-05-13 20:03:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace TINK.ViewModel
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
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);
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets booked info display text.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Display text</returns>
|
|
|
|
|
string GetBookedInfo(
|
|
|
|
|
DateTime? p_oFrom,
|
|
|
|
|
string p_strStation = null,
|
|
|
|
|
string p_strCode = null);
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|