Advertisement
Guest User

Untitled

a guest
May 19th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. /**
  2. * [POST] Insert Account
  3. * @return {AccountInterface}
  4. */
  5. public insertAccount(accountData: AccountInterface, clientId: string): Observable<AccountInterface> {
  6. const url = `${this.BASE_URL}/employee/client/account/${clientId}`;
  7. return this.http.post<AccountInterface>(url, accountData);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement