/// <summary>
 /// Deprecated Method for adding a new object to the FloorTypes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFloorTypes(FloorTypeEntity floorTypeEntity)
 {
     base.AddObject("FloorTypes", floorTypeEntity);
 }
 /// <summary>
 /// Create a new FloorTypeEntity object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static FloorTypeEntity CreateFloorTypeEntity(global::System.Byte id, global::System.String description, global::System.Boolean isActive)
 {
     FloorTypeEntity floorTypeEntity = new FloorTypeEntity();
     floorTypeEntity.Id = id;
     floorTypeEntity.Description = description;
     floorTypeEntity.IsActive = isActive;
     return floorTypeEntity;
 }