コード例 #1
0
ファイル: ApiManager.cs プロジェクト: v-hack/coguard-server
 public static bool ApiSetPatientPriority(int doctorId, int userId, int priority)
 {
     return(Doctor2PatientManager.ChangePatientPriority(doctorId, userId, priority));
 }
コード例 #2
0
ファイル: ApiManager.cs プロジェクト: v-hack/coguard-server
 public static List <Doctor2PatientModel> ApiGetPatientsForDoctor(int doctorId)
 {
     return(Doctor2PatientManager.GetPatientsList(doctorId));
 }