ameliabooking
/
src
/
Domain
/
Repository
/
Booking
/
Appointment
/
CustomerBookingRepositoryInterface.php
AppointmentRepositoryInterface.php
5 years ago
CustomerBookingExtraRepositoryInterface.php
5 years ago
CustomerBookingRepositoryInterface.php
7 years ago
CustomerBookingRepositoryInterface.php
34 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 CustomerBookingRepositoryInterface |
| 13 | * |
| 14 | * @package AmeliaBooking\Domain\Repository\Booking\Appointment |
| 15 | */ |
| 16 | interface CustomerBookingRepositoryInterface extends BaseRepositoryInterface |
| 17 | { |
| 18 | /** |
| 19 | * @param int $id |
| 20 | * @param int $status |
| 21 | * |
| 22 | * @return mixed |
| 23 | */ |
| 24 | public function updateStatusById($id, $status); |
| 25 | |
| 26 | /** |
| 27 | * @param int $id |
| 28 | * @param int $status |
| 29 | * |
| 30 | * @return mixed |
| 31 | */ |
| 32 | public function updateStatusByAppointmentId($id, $status); |
| 33 | } |
| 34 |