2021-05-13 20:03:07 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
using TINK.Model.Bikes;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
using TINK.Model.Services.CopriApi;
|
|
|
|
|
|
|
|
|
|
namespace TINK.Model.Connector
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public interface IQuery
|
|
|
|
|
{
|
|
|
|
|
/// <summary> Gets all stations including postions.</summary>
|
|
|
|
|
Task<Result<StationsAndBikesContainer>> GetBikesAndStationsAsync();
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Gets bikes occupied is a user is logged in. </summary>
|
|
|
|
|
/// <returns>Collection of bikes.</returns>
|
|
|
|
|
Task<Result<BikeCollection>> GetBikesOccupiedAsync();
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Gets bikes either bikes available if no user is logged in or bikes available and bikes occupied if a user is logged in. </summary>
|
|
|
|
|
/// <returns>Collection of bikes.</returns>
|
|
|
|
|
Task<Result<BikeCollection>> GetBikesAsync();
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|