source: Sources/frontend/src/app/subject.service.ts@ cd15236

Last change on this file since cd15236 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 522 bytes
RevLine 
[8423429]1import { Injectable } from '@angular/core';
2import {HttpClient} from "@angular/common/http";
3import {Observable} from "rxjs";
4import {StudentCourseInterface} from "./StudentCourseInterface";
5import {SubjectInterface} from "./subjectInterface";
6
7@Injectable({
8 providedIn: 'root'
9})
10export class SubjectService {
11
12 url = "http://localhost:8080/api/subjects/all"
13 constructor(private http: HttpClient) { }
14
15 getAllSubjects(): Observable<SubjectInterface[]> {
16 return this.http.get<SubjectInterface[]>(this.url)
17 }
18}
Note: See TracBrowser for help on using the repository browser.