namespace FormulaOneApp.ErgastAPI.Services.Standings
{
using System.Threading.Tasks;
using Model.Standing;
///
///
///
public interface IStandingService
{
///
///
///
///
///
Task GetSeasonConstructorStandingsCollectionAsync(string season = "current");
///
///
///
///
///
Task GetSeasonDriverStandingsCollectionAsync(string season = "current");
}
}