Created
February 7, 2019 16:30
-
-
Save mfoti/ec9dbe0f96272c411383506039d7d63d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract public function getAvailabilities(\DateTime $start_time, \DateTime $end_time, $users = [], $medical_centers = []); | |
/** | |
* Validate and format response from webservice | |
* @param $raw_response | |
* @param $method | |
* @return mixed | |
*/ | |
abstract public function clearResponse($raw_response, $method); | |
/** | |
* @param array $params | |
* @return mixed | |
*/ | |
abstract public function createBooking($params); | |
/** | |
* @param $params | |
* @return mixed | |
*/ | |
abstract public function deleteBooking($params); | |
/** | |
* @return mixed | |
*/ | |
abstract public function getHealthServices(); | |
/** | |
* @return mixed | |
*/ | |
abstract public function getDoctors(); | |
/** | |
* @return mixed | |
*/ | |
abstract public function getMedicalCenters(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment