import { DataRepositoryModel } from "../../models/dataRepositories/DataRepositoryModel"; import { Observable } from "rxjs"; import { HttpHeaders } from "@angular/common/http"; import { HostConfiguration } from "../../app.constants"; import { BaseHttpService } from "../../utilities/cite-http-service-module/base-http.service"; import { Injectable } from "@angular/core"; @Injectable() export class DataRepositoryService { private actionUrl: string; private headers: HttpHeaders; constructor(private http: BaseHttpService) { this.actionUrl = HostConfiguration.Server + 'datarepos/'; this.headers = new HttpHeaders(); this.headers = this.headers.set('Content-Type', 'application/json'); this.headers = this.headers.set('Accept', 'application/json'); } create(dataRepoModel: DataRepositoryModel): Observable { return this.http.post(this.actionUrl + 'create', dataRepoModel, { headers: this.headers }) } }