Components and Services

    Services

    1. import { Injectable, Inject } from 'ng-metadata/core';
    2. @Injectable()
    3. export class HeroService {
    4. constructor(@Inject('$http') private $http: ng.IHttpService){
    5. fetchAll(){
    6. return this.$http.get('/api/heroes');
    7. }