mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
30 lines
774 B
C#
30 lines
774 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using TINK.Model;
|
|
using TINK.Model.Bikes;
|
|
using TINK.Model.Station;
|
|
using TINK.Model.User;
|
|
|
|
namespace TestTINKLib.Fixtures.UseCases
|
|
{
|
|
public class TestHelper
|
|
{
|
|
/// <summary>
|
|
/// Get all bikes at a given station from copri.
|
|
/// </summary>
|
|
public static async Task<BikeCollectionMutable> GetBikesAtStation(
|
|
User user,
|
|
TINK.Model.Connector.IConnector connector,
|
|
IEnumerable<IStation> stations,
|
|
string selectedStationId)
|
|
{
|
|
var l_oBikesAtStation = new BikeCollectionMutable();
|
|
|
|
var l_oBikesAvailable = (await connector.Query.GetBikesAsync()).Response;
|
|
|
|
l_oBikesAtStation.Update(l_oBikesAvailable.GetAtStation(selectedStationId), stations);
|
|
|
|
return l_oBikesAtStation;
|
|
}
|
|
}
|
|
}
|