import { Injectable } from '@angular/core'; import { HttpRestService } from '@core/services/http-rest.service'; @Injectable({ providedIn: 'root' }) export class AppResources { constructor ( private httpRest: HttpRestService ) { } getVersion () { return this.httpRest.post('/Version', null); } }