using System.Collections.Generic;
using TINK.Model.Stations.StationNS.Operator;
namespace TINK.Model.Stations.StationNS
{
/// Holds object representing null station.
public class NullStation : IStation
{
/// Holds the unique id of the station.c
public string Id => null;
/// Holds the group to which the station belongs.
public IEnumerable Group => new List();
/// Gets the name of the station.
public string StationName => string.Empty;
/// Holds the gps- position of the station.
public IPosition Position => PositionFactory.Create();
/// Holds operator related data.
public IData OperatorData => new Data();
/// Gets the count of bikes available at station.
public int? AvailableBikesCount => null;
/// Gets bike objects.
/// Each entry has a name, holds the count of available bikes at station and the group value. ///
public IBikeGroupCol BikeGroups => null;
}
}