Example #1
0
 partial void DeleteSpace(Space instance);
Example #2
0
 partial void UpdateSpace(Space instance);
 /// <summary>
 /// Deprecated Method for adding a new object to the Spaces EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSpaces(Space space)
 {
     base.AddObject("Spaces", space);
 }
Example #4
0
 partial void InsertSpace(Space instance);
 /// <summary>
 /// Create a new Space object.
 /// </summary>
 /// <param name="spaceId">Initial value of the SpaceId property.</param>
 /// <param name="placeId">Initial value of the PlaceId property.</param>
 /// <param name="accessTypeId">Initial value of the AccessTypeId property.</param>
 /// <param name="ownerId">Initial value of the OwnerId property.</param>
 /// <param name="createdAt">Initial value of the CreatedAt property.</param>
 /// <param name="deleted">Initial value of the Deleted property.</param>
 /// <param name="spaceDirection">Initial value of the SpaceDirection property.</param>
 public static Space CreateSpace(global::System.Int32 spaceId, global::System.Int32 placeId, global::System.Int32 accessTypeId, global::System.Int32 ownerId, global::System.DateTime createdAt, global::System.Boolean deleted, global::System.String spaceDirection)
 {
     Space space = new Space();
     space.SpaceId = spaceId;
     space.PlaceId = placeId;
     space.AccessTypeId = accessTypeId;
     space.OwnerId = ownerId;
     space.CreatedAt = createdAt;
     space.Deleted = deleted;
     space.SpaceDirection = spaceDirection;
     return space;
 }