コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientElement" /> class.
 /// </summary>
 /// <param name="patient">The patient to display.</param>
 /// <param name="splitView">The split view controller to be used.</param>
 public PatientElement(Patient patient, PatientsSplitView splitView)
     : base(patient.DisplayName)
 {
     this.Patient = patient;
     this.PatientsSplitView = splitView;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientsListScreen" /> class.
 /// This constructor is called by the iPad.
 /// </summary>
 /// <param name="splitView">The split view.</param>
 public PatientsListScreen(PatientsSplitView splitView)
 {
     this.SplitView = splitView;
 }