road-create.service.ts 356 Bytes
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';

import { CreateBaseService } from './create.base.service';

@Injectable()
export class RoadCreateService extends CreateBaseService {
    protected apiUrl: string = 'http://localhost:5000/road/directory';
    constructor(protected http: Http) {
        super(http);
    }
}