|  |  |  | @ -24,7 +24,7 @@ abstract class BookAppointmentsRepo { | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   Future<Either<Failure, GenericApiModel<DoctorsProfileResponseModel>>> getDoctorProfile(int clinicID, int projectID, int doctorId, {Function(dynamic)? onSuccess, Function(String)? onError}); | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   Future<Either<Failure, GenericApiModel<dynamic>>> getDoctorFreeSlots(int clinicID, int projectID, int doctorId, bool isBookingForLiveCare, {Function(dynamic)? onSuccess, Function(String)? onError}); | 
		
	
		
			
				|  |  |  |  |   Future<Either<Failure, GenericApiModel<dynamic>>> getDoctorFreeSlots(int clinicID, int projectID, int doctorId, bool isBookingForLiveCare, {bool continueDentalPlan = false, Function(dynamic)? onSuccess, Function(String)? onError}); | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   Future<Either<Failure, GenericApiModel<dynamic>>> cancelAppointment({required PatientAppointmentHistoryResponseModel patientAppointmentHistoryResponseModel}); | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
	
		
			
				
					|  |  |  | @ -229,7 +229,7 @@ class BookAppointmentsRepoImp implements BookAppointmentsRepo { | 
		
	
		
			
				|  |  |  |  |   //TODO: Implement the logic for Dental & laser clinics | 
		
	
		
			
				|  |  |  |  |   @override | 
		
	
		
			
				|  |  |  |  |   Future<Either<Failure, GenericApiModel<dynamic>>> getDoctorFreeSlots(int clinicID, int projectID, int doctorId, bool isBookingForLiveCare, | 
		
	
		
			
				|  |  |  |  |       {Function(dynamic)? onSuccess, Function(String)? onError}) async { | 
		
	
		
			
				|  |  |  |  |       {bool continueDentalPlan = false, Function(dynamic)? onSuccess, Function(String)? onError}) async { | 
		
	
		
			
				|  |  |  |  |     Map<String, dynamic> mapDevice = { | 
		
	
		
			
				|  |  |  |  |       "DoctorID": doctorId, | 
		
	
		
			
				|  |  |  |  |       "IsBookingForLiveCare": isBookingForLiveCare, | 
		
	
	
		
			
				
					|  |  |  | @ -238,6 +238,7 @@ class BookAppointmentsRepoImp implements BookAppointmentsRepo { | 
		
	
		
			
				|  |  |  |  |       "OriginalClinicID": clinicID, | 
		
	
		
			
				|  |  |  |  |       "days": 0, | 
		
	
		
			
				|  |  |  |  |       "isReschadual": false, | 
		
	
		
			
				|  |  |  |  |       "ContinueDentalPlan": continueDentalPlan | 
		
	
		
			
				|  |  |  |  |     }; | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |     try { | 
		
	
	
		
			
				
					|  |  |  | 
 |