/// <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; }
/// <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; }