Example #1
0
 public static void deleteAppointment(string id)
 {
     AppointmentC.DeleteAppointment(Convert.ToInt32(id));
 }
Example #2
0
 public static void updateAppointment(AppointmentE obj)
 {
     AppointmentC.UpdateAppointment(obj);
 }
Example #3
0
 public static int insertAppointment(AppointmentE obj)
 {
     return(AppointmentC.InsertAppointment(obj));
 }
Example #4
0
 public static List <AppointmentE> getAppointmentsByDietitianID(string id)
 {
     return(AppointmentC.getAppointmentsByDietitianID(Convert.ToInt32(id)));
 }
Example #5
0
 public static AppointmentE getAppointmentByID(string id)
 {
     return(AppointmentC.getAppointmentByID(Convert.ToInt32(id)));
 }
Example #6
0
 //Appointment
 public static List <AppointmentE> getAppointments()
 {
     return(AppointmentC.selectAppointments());
 }