You can simply use toPromise method like below:
public getEmployerListFromService() {
const url = `/list/items/update?itemId=`;
return this.http.get(url).toPromise().then(response => {
console.log(response);
})
}
And Call this method by :
this.service.getEmployerListFromService();