import RouteGroupServiceInterface from './RouteGroupServiceInterface'; import RouteGroup from '../entity/RouteGroup'; import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; import RouteGroupClientInterface from '../clients/RouteGroupClientInterface'; import RouteGroupAdapterInterface from '../adapter/RouteGroupAdapterInterface'; export default class RouteGroupService extends BaseEntityService implements RouteGroupServiceInterface { constructor(client: RouteGroupClientInterface, transformer: RouteGroupAdapterInterface) { super(client, transformer); } }