Exemple #1
0
        private bool IsAppointmentDateAvailableForGivenDoctor(DateTime appointmentDate, int doctorid)
        {
            var appointment = _appointmentDataAccess.GetAppointmentForSpecificDateAndDoctor(appointmentDate, doctorid);

            return(appointment == null ? true : false);
        }