import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; import Stop from '../entity/Stop'; import StopServiceInterface from './StopServiceInterface'; import StopClientInterface from '../clients/StopClientInterface'; import StopAdapterInterface from '../adapter/StopAdapterInterface'; export default class StopService extends BaseEntityService implements StopServiceInterface { constructor(client: StopClientInterface, transformer: StopAdapterInterface) { super(client, transformer); } }