ameliabooking
/
src
/
Domain
/
Repository
/
Booking
/
Appointment
/
CustomerBookingExtraRepositoryInterface.php
AppointmentRepositoryInterface.php
5 years ago
CustomerBookingExtraRepositoryInterface.php
5 years ago
CustomerBookingRepositoryInterface.php
7 years ago
CustomerBookingExtraRepositoryInterface.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @copyright © TMS-Plugins. All rights reserved. |
| 4 | * @licence See LICENCE.md for license details. |
| 5 | */ |
| 6 | |
| 7 | namespace AmeliaBooking\Domain\Repository\Booking\Appointment; |
| 8 | |
| 9 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 10 | |
| 11 | /** |
| 12 | * Interface CustomerBookingExtraRepositoryInterface |
| 13 | * |
| 14 | * @package AmeliaBooking\Domain\Repository\Booking\Appointment |
| 15 | */ |
| 16 | interface CustomerBookingExtraRepositoryInterface extends BaseRepositoryInterface |
| 17 | { |
| 18 | |
| 19 | } |
| 20 |