List <BusEstimatedTime> GetEstimatedArrives(int id) { string url = "http://87.98.237.99:88/delays?stopId=" + id; var response = ApiRequests.GET(url); return(BusEstimatedTimeParser.FromJson(response).allArrives); }
public static string ToJson(this BusEstimatedTimeParser self) => JsonConvert.SerializeObject(self);