import StopGroupServiceInterface from './StopGroupServiceInterface'; import StopGroup from '../entity/StopGroup'; import StopGroupClientInterface from '../clients/StopGroupClientInterface'; import StopGroupAdapterInterface from '../adapter/StopGroupAdapterInterface'; import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; export default class StopGroupService extends BaseEntityService implements StopGroupServiceInterface { constructor(client: StopGroupClientInterface, transformer: StopGroupAdapterInterface) { super(client, transformer); } }