CircuitService.cs 535 B

12345678910111213141516171819
  1. namespace FormulaOneApp.ErgastAPI.Services.Circuits
  2. {
  3. using System.Threading.Tasks;
  4. using Model.Constructor;
  5. using Base;
  6. public class CircuitService : HttpWebBase, ICircuitService
  7. {
  8. public Task<ConstructorTable> GetSeasonCircuitsCollectionAsync(string season = "current")
  9. {
  10. throw new System.NotImplementedException();
  11. }
  12. public Task<ConstructorTable> GetAllCircuitsCollectionAsync()
  13. {
  14. throw new System.NotImplementedException();
  15. }
  16. }
  17. }