コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DoctorInfo"/>
 /// class with the specified <see cref="HospitalDB"/>.
 /// </summary>
 /// <param name="db">The <see cref="HospitalDB"/> object.</param>
 public DoctorInfo(HospitalDB db)
 {
     _db = db;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientVisitCollection"/>
 /// class with the specified <see cref="HospitalDB"/>.
 /// </summary>
 /// <param name="db">The <see cref="HospitalDB"/> object.</param>
 public PatientVisitCollection(HospitalDB db)
 {
     _db = db;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PatientVisitInfo"/>
 /// class with the specified <see cref="HospitalDB"/>.
 /// </summary>
 /// <param name="db">The <see cref="HospitalDB"/> object.</param>
 public PatientVisitInfo(HospitalDB db)
 {
     _db = db;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BedInfo"/>
 /// class with the specified <see cref="HospitalDB"/>.
 /// </summary>
 /// <param name="db">The <see cref="HospitalDB"/> object.</param>
 public BedInfo(HospitalDB db)
 {
     _db = db;
 }