Last change
on this file was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago |
adding new components
|
-
Property mode
set to
100644
|
File size:
469 bytes
|
Line | |
---|
1 | import { HttpClient } from "@angular/common/http";
|
---|
2 | import { Injectable } from "@angular/core";
|
---|
3 | import { Observable } from "rxjs";
|
---|
4 | import { CityService } from "./city.service";
|
---|
5 | import { CountryService } from "./country.service";
|
---|
6 | import { forkJoin } from 'rxjs';
|
---|
7 |
|
---|
8 | @Injectable({
|
---|
9 | providedIn: 'root'
|
---|
10 | })
|
---|
11 |
|
---|
12 | export class PlaceService{
|
---|
13 |
|
---|
14 | constructor(private httpClient : HttpClient, private cityService: CityService, private countryService : CountryService){}
|
---|
15 |
|
---|
16 |
|
---|
17 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.