예제 #1
0
        public List <AppointmentModel> GetAppointmentsTable(Guid practitionerId)
        {
            List <AppointmentModel> result = new List <AppointmentModel>();
            PractitionerData        data   = new PractitionerData();

            result = data.GetAppointmentsTable(practitionerId);

            return(result);
        }