Пример #1
0
 // delete patient off schema (only admin's can perform action)
 private void DeletePatient(int patientSchemaId)
 {
     if (base.UserType == ProtocolMgmtUsers.ProtocolAdmin)
     {
         PatientProtocolController.DeletePatientFromSchema(patientSchemaId);
     }
 }
Пример #2
0
 private void DeletePatientSchema(int patientSchemaId)
 {
     PatientProtocolController.DeletePatientFromSchema(patientSchemaId);
 }