import { MaerskApiClient } from '../../../common/clients/maerskApi.client'; export class MarketService { private apiClient: MaerskApiClient; constructor(apiClient) { this.apiClient = apiClient; } getPoolComments = (poolId: number) => { return this.apiClient.getPoolComments(poolId); } getMarkets = (poolId: number) => { return this.apiClient.getMarkets(poolId); } }