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