/// import {Injectable} from '@angular/core'; import {LoginCredential} from "../../../../common/entities/LoginCredential"; import {Http} from "@angular/http"; import {NetworkService} from "./network.service.ts"; import {User} from "../../../../common/entities/User"; import {Message} from "../../../../common/entities/Message"; @Injectable() export class UserService{ constructor(private _networkService:NetworkService){ } public login(credential:LoginCredential): Promise>{ return this._networkService.postJson("/user/login",{"loginCredential": credential}); } public getSessionUser(): Promise>{ return this._networkService.getJson("/user/login"); } }