import BookingServiceInterface from './BookingServiceInterface'; import Booking from '../entity/Booking'; import BaseEntityService from '../../common/services/BaseEntityService/BaseEntityService'; import BookingClientInterface from '../clients/BookingClientInterface'; import BookingAdapterInterface from '../adapter/BookingAdapterInterface'; export default class BookingService extends BaseEntityService implements BookingServiceInterface { constructor(client: BookingClientInterface, transformer: BookingAdapterInterface) { super(client, transformer); } }