You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
563 B
14 lines
563 B
using System; |
|
using System.Collections.Generic; |
|
using System.Threading.Tasks; |
|
using InfoferScraper.Models.Train; |
|
using InfoferScraper.Models.Station; |
|
using scraper.Models.Itinerary; |
|
|
|
namespace Server.Services.Interfaces; |
|
|
|
public interface IDataManager { |
|
public Task<IStationScrapeResult?> FetchStation(string stationName, DateTimeOffset date); |
|
public Task<ITrainScrapeResult?> FetchTrain(string trainNumber, DateTimeOffset date); |
|
public Task<IReadOnlyList<IItinerary>?> FetchItineraries(string from, string to, DateTimeOffset? date = null); |
|
}
|
|
|