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.
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using InfoferScraper.Models.Train;
|
|
|
|
using InfoferScraper.Models.Station;
|
|
|
|
using Server.Models.Database;
|
|
|
|
|
|
|
|
namespace Server.Services.Interfaces;
|
|
|
|
|
|
|
|
public interface IDatabase {
|
|
|
|
public IReadOnlyList<StationListing> Stations { get; }
|
|
|
|
public IReadOnlyList<TrainListing> Trains { get; }
|
|
|
|
|
|
|
|
public Task<string> FoundTrain(string rank, string number, string company);
|
|
|
|
public Task FoundStation(string name);
|
|
|
|
public Task FoundTrainAtStation(string stationName, string trainName);
|
|
|
|
public Task OnTrainData(ITrainScrapeResult trainData);
|
|
|
|
public Task OnStationData(IStationScrapeResult stationData);
|
|
|
|
}
|