using System; namespace TINK.ViewModel { public interface IInUseStateInfoProvider { /// /// Gets reserved info display text. /// /// Display text string GetReservedInfo( TimeSpan? p_oRemainingTime, string p_strStation = null, string p_strCode = null); /// /// Gets booked info display text. /// /// Display text string GetBookedInfo( DateTime? p_oFrom, string p_strStation = null, string p_strCode = null); } }