示例#1
0
    public Score[] GetScoresByTimePeriod(DateTime from, DateTime to)
    {
        string fromString = from.ToString(_connector.timeFormat);
        string toString   = to.ToString(_connector.timeFormat);

        return(_connector.GetScoresByTimePeriod(playerId, gameId, fromString, toString));
    }