import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; import CustomerClientInterface from '../clients/CustomerClientInterface'; import CustomerServiceInterface from './CustomerServiceInterface'; import Customer from '../entity/Customer'; import CustomerAdapterInterface from '../adapter/CustomerAdapterInterface'; export default class CustomerService extends BaseEntityService implements CustomerServiceInterface { constructor(client: CustomerClientInterface, transformer: CustomerAdapterInterface) { super(client, transformer); } }