Skip to content
Snippets Groups Projects
Commit 7a8bf2f9 authored by Olabarrieta Palacios, Ignacio's avatar Olabarrieta Palacios, Ignacio
Browse files

a

parent 7fcfd48a
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,10 @@ export class BikeTrajectoryService {
return this.http.get<any>(`${this.apiURL}/get_day?day=`+day);
}*/
getDayAll(day:string, weekday:number, day_part:number): Observable<any> {
return this.http.get<any>(`${this.apiURL}/get_day?day=`+day+`&weekday=`+weekday+`&day_part=`+day_part);
}
getDay(day:string): Observable<any> {
return this.http.get<any>(`${this.apiURL}/get_day?day=`+day);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment