authority-create.service.ts
366 Bytes
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { CreateBaseService } from './create.base.service';
@Injectable()
export class AuthorityCreateService extends CreateBaseService {
protected apiUrl: string = 'http://localhost:5000/authority/directory';
constructor(protected http: Http) {
super(http);
}
}