import {Injectable} from '@angular/core'; import {Http} from '@angular/http'; import{EnvProperties} from '../../utils/properties/env-properties'; @Injectable() export class SearchCommunityDataprovidersService { constructor(private http: Http ) {} searchDataproviders (properties:EnvProperties, communityId: string):any { let url = properties.communityAPI+communityId+"/contentproviders"; return this.http.get((properties.useCache)? (properties.cacheUrl+encodeURIComponent(url)): url) .map(res => res.json()) } }