Beispiel #1
0
 public static bool ApiSetPatientPriority(int doctorId, int userId, int priority)
 {
     return(Doctor2PatientManager.ChangePatientPriority(doctorId, userId, priority));
 }
Beispiel #2
0
 public static List <Doctor2PatientModel> ApiGetPatientsForDoctor(int doctorId)
 {
     return(Doctor2PatientManager.GetPatientsList(doctorId));
 }