Beispiel #1
0
 private Participant GetParticipant(Guid pid)
 {
     ParticipantDAO dao = new ParticipantDAO();
     return dao.FindParticipantById(pid);
 }
Beispiel #2
0
 private void GetPatient()
 {
     Guid pid = (Guid)Session["selected_patient_pid"];
     ParticipantDAO dao = new ParticipantDAO();
     selectedParticipant = dao.FindParticipantById(pid);
 }