Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new Room object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="maxCapacity">Initial value of the MaxCapacity property.</param>
 /// <param name="locationId">Initial value of the LocationId property.</param>
 public static Room CreateRoom(global::System.Int32 id, global::System.String name, global::System.String description, global::System.Int32 maxCapacity, global::System.Int32 locationId)
 {
     Room room = new Room();
     room.Id = id;
     room.Name = name;
     room.Description = description;
     room.MaxCapacity = maxCapacity;
     room.LocationId = locationId;
     return room;
 }