export class Client { axiosInstance; constructor(axiosInstance) { this.axiosInstance = axiosInstance; } } export class Service { client; constructor(client) { this.client = client; } getSuccessfulResult(result) { return { result, successful: true, }; } getErrorResult(error) { return { result: error, successful: false, }; } }