Components and Services
Services
import { Injectable, Inject } from 'ng-metadata/core';
@Injectable()
export class HeroService {
constructor(@Inject('$http') private $http: ng.IHttpService){
fetchAll(){
return this.$http.get('/api/heroes');
}