src/app/services/data/data.service.ts
Data connection service.
Retrieves data from a project server.
Properties |
|
Methods |
|
constructor(imageDataService: ImageDataService, httpClient: HttpClient)
|
||||||||||||
Constructs the data service. ~constructor
Parameters :
|
Public getAccomplishments |
getAccomplishments()
|
Retrieves accomplishments.
Returns :
Observable<any>
The accomplishments. |
Public getCv |
getCv()
|
Retrieves a CV.
Returns :
Observable<any>
The CV. |
Public getEducation |
getEducation()
|
Retrieves education.
Returns :
Observable<any>
The education. |
Public getEntities |
getEntities()
|
Retrieves an entities array.
Returns :
Observable<any>
The entities array. |
Public getGanttChart |
getGanttChart()
|
Retrieves a gantt chart.
Returns :
Observable<any>
The gantt chart. |
Public getGeneralTimeline |
getGeneralTimeline()
|
Retrieves a general timeline.
Returns :
Observable<any>
The general timeline. |
Public getOntology |
getOntology()
|
Retrieves an ontology array.
Returns :
Observable<any>
The ontology array. |
Public getProfessionalExperience |
getProfessionalExperience()
|
Retrieves professional experience.
Returns :
Observable<any>
The professional experience. |
Public getProjects |
getProjects()
|
Retrieves a projects array.
Returns :
Observable<any>
The projects array. |
Public getPublications |
getPublications()
|
Retrieves publications.
Returns :
Observable<any>
The publications. |
Public getResourceUri | ||||||||||||
getResourceUri(resourceName: string, themeName: string)
|
||||||||||||
Retrieves a theme-dependent resource URI.
Parameters :
Returns :
string
The theme-dependent resource URI. |
Public getUi |
getUi()
|
Retrieves a UI.
Returns :
Observable<any>
The UI. |
Public getVersion |
getVersion()
|
Retrieves the app version.
Returns :
Observable<any>
The app version. |
Public urlResolve | ||||||||||||
urlResolve(base: string, url: string)
|
||||||||||||
Resolves an url to a base.
Parameters :
Returns :
string
The resolved url. |
Public imageDataService |
Type : ImageDataService
|
The data service injected dependency.
|