source: trip-planner-front/src/app/_services/companion.service.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 479 bytes
Line 
1import { HttpClient } from "@angular/common/http";
2import { Injectable } from "@angular/core";
3import { Observable } from "rxjs";
4import { Companion } from "../_models/companion";
5
6
7@Injectable({
8 providedIn: 'root'
9})
10
11export class CompanionService{
12 constructor(private httpClient : HttpClient){
13 }
14
15 getAllCompanions():Observable<Companion[]>{
16 let url = "http://localhost:8080/api/companions";
17 return this.httpClient.get<Companion[]>(url);
18 }
19}
Note: See TracBrowser for help on using the repository browser.