/// <summary>
 /// Deprecated Method for adding a new object to the Patient_Room EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPatient_Room(Patient_Room patient_Room)
 {
     base.AddObject("Patient_Room", patient_Room);
 }
 /// <summary>
 /// Create a new Patient_Room object.
 /// </summary>
 /// <param name="patientId">Initial value of the patientId property.</param>
 /// <param name="roomId">Initial value of the roomId property.</param>
 /// <param name="treatmentId">Initial value of the treatmentId property.</param>
 public static Patient_Room CreatePatient_Room(global::System.String patientId, global::System.String roomId, global::System.String treatmentId)
 {
     Patient_Room patient_Room = new Patient_Room();
     patient_Room.patientId = patientId;
     patient_Room.roomId = roomId;
     patient_Room.treatmentId = treatmentId;
     return patient_Room;
 }