Changeset d2e69be for Farmatiko/ClientApp/src/app/counter
- Timestamp:
- 07/27/20 17:10:07 (4 years ago)
- Branches:
- master
- Children:
- ef1219a
- Parents:
- 4b342bb
- Location:
- Farmatiko/ClientApp/src/app/counter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/counter/counter.component.html
r4b342bb rd2e69be 17 17 </thead> 18 18 <tbody> 19 19 <tr *ngFor="let facility of facilities"> 20 20 <td>{{ facility.Name }}</td> 21 <td>{{ facility.Municipality }}</td> 22 <td>{{ facility.Address }}</td> 23 <td>{{ facility.Type }}</td> 24 <td>{{ facility.Email }}</td> 25 <td>{{ facility.Phone }}</td> 26 </tr> 21 <!-- 22 <td>{{ facility.Municipality }}</td> 23 <td>{{ facility.Address }}</td> 24 <td>{{ facility.Type }}</td> 25 <td>{{ facility.Email }}</td> 26 <td>{{ facility.Phone }}</td>--> 27 <td>facility.Municipality</td> 28 <td></td> 29 <td></td> 30 <td></td> 31 <td> 32 33 </td> 34 35 </tr> 27 36 </tbody> 28 37 </table> -
Farmatiko/ClientApp/src/app/counter/counter.component.ts
r4b342bb rd2e69be 11 11 12 12 constructor(http: HttpClient, @Inject('BASE_URL') baseUrl: string) { 13 http.get<HealthFacilities[]>(baseUrl + 'HealthFacilities ').subscribe(result => {13 http.get<HealthFacilities[]>(baseUrl + 'HealthFacilities/Get?').subscribe(result => { 14 14 this.facilities = result; 15 console.log(this.facilities); 15 16 }, error => console.error(error)); 16 } 17 } 17 18 } 19 /*interface healthFacilities { 20 Name: string; 21 Municipality: string; 22 Address: string; 23 Type: string; 24 Email: string; 25 Phone: string; 26 }*/ 27
Note:
See TracChangeset
for help on using the changeset viewer.