ameliabooking
/
src
/
Domain
/
Repository
/
Booking
/
Appointment
/
CustomerBookingRepositoryInterface.php
AppointmentRepositoryInterface.php
1 year ago
CustomerBookingExtraRepositoryInterface.php
1 year ago
CustomerBookingRepositoryInterface.php
1 year ago
CustomerBookingRepositoryInterface.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @copyright © TMS-Plugins. All rights reserved. |
| 5 | * @licence See LICENCE.md for license details. |
| 6 | */ |
| 7 | |
| 8 | namespace AmeliaBooking\Domain\Repository\Booking\Appointment; |
| 9 | |
| 10 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 11 | |
| 12 | /** |
| 13 | * Interface CustomerBookingRepositoryInterface |
| 14 | * |
| 15 | * @package AmeliaBooking\Domain\Repository\Booking\Appointment |
| 16 | */ |
| 17 | interface CustomerBookingRepositoryInterface extends BaseRepositoryInterface |
| 18 | { |
| 19 | /** |
| 20 | * @param int $id |
| 21 | * @param int $status |
| 22 | * |
| 23 | * @return mixed |
| 24 | */ |
| 25 | public function updateStatusById($id, $status); |
| 26 | |
| 27 | /** |
| 28 | * @param int $id |
| 29 | * @param int $status |
| 30 | * |
| 31 | * @return mixed |
| 32 | */ |
| 33 | public function updateStatusByAppointmentId($id, $status); |
| 34 | } |
| 35 |