Blame view

src/services/road-to-category-create.service.ts 376 Bytes
4cfbf7ca   Administrator   add road-to-category
1
2
3
4
5
6
7
8
9
10
11
12
  import { Injectable } from '@angular/core';
  import { Http } from '@angular/http';
  
  import { CreateBaseService } from './create.base.service';
  
  @Injectable()
  export class RoadToCategoryCreateService extends CreateBaseService {
      protected apiUrl: string = 'http://localhost:5000/roadtocategory/directory';
      constructor(protected http: Http) {
          super(http);
      }
  }