/// <summary>
 /// Deprecated Method for adding a new object to the Rooms EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRooms(Room room)
 {
     base.AddObject("Rooms", room);
 }
 /// <summary>
 /// Create a new Room object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="roomNumber">Initial value of the roomNumber property.</param>
 public static Room CreateRoom(global::System.Int32 id, global::System.Int32 roomNumber)
 {
     Room room = new Room();
     room.id = id;
     room.roomNumber = roomNumber;
     return room;
 }