import CityAdapterInterface from '../adapter/CityAdapterInterface'; import CityServiceInterface from './CityServiceInterface'; import CityClientInterface from '../clients/CityClientInterface'; import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; import City from '../entity/City'; export default class CityService extends BaseEntityService implements CityServiceInterface { constructor(client: CityClientInterface, transformer: CityAdapterInterface) { super(client, transformer); } }