NetanelBasal
3/8/2017 - 5:11 PM

global1.ts

class TodosService {

  constructor(private @Inject(API_CONFIG) api, private http: Http) {}
  
  getTodos() {
    return http.get(this.api.todos);
  }
}