/// <summary> /// Retrives the count of Upcomming Appointments of a particular patient /// </summary> /// <returns>Count of Upcomming Appointments</returns> public int GetUpcomingPatientAppointments(int PatientId) { return(dashboardData.GetUpcomingPatientAppointments(PatientId)); }