namespace FormulaOneApp.ErgastAPI.Services.Driver
{
using System.Threading.Tasks;
using Model.Driver;
using Model.Race;
public interface IDriverService
{
///
///
///
///
///
Task GetDriverCollectionAsync(string season = "current");
///
///
///
///
///
Task GetDriverInformationAsync(string driver = "");
///
///
///
///
Task GetChampionCollectionAsync();
///
///
///
///
///
Task GetDriverResultsAsync(string driver = "", string season = "current");
}
}