import { HttpHeaders } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; import { environment } from '../../../environments/environment'; import { Language } from '../../models/language/Language'; import { BaseHttpService } from '../../utilities/cite-http-service-module/base-http.service'; @Injectable() export class LanguageService { private actionUrl: string; private headers: HttpHeaders; constructor(private http: BaseHttpService) { this.actionUrl = environment.Server + 'common/'; this.headers = new HttpHeaders(); this.headers = this.headers.set('Content-Type', 'application/json'); this.headers = this.headers.set('Accept', 'application/json'); } public getLang(): Observable { return this.http.get(this.actionUrl + 'language', { headers: this.headers }); } }