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