import { MaerskApiClient } from 'app/common/clients/maerskApi.client'; export class CalendarService { private apiClient: MaerskApiClient; constructor(apiClient) { this.apiClient = apiClient; } getCalendarEvents = () => { return this.apiClient.getCalendarEvents(); } }