partial void DeleteSpaceLocation(SpaceLocation instance);
partial void UpdateSpaceLocation(SpaceLocation instance);
/// <summary> /// Deprecated Method for adding a new object to the SpaceLocations EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToSpaceLocations(SpaceLocation spaceLocation) { base.AddObject("SpaceLocations", spaceLocation); }
partial void InsertSpaceLocation(SpaceLocation instance);
/// <summary> /// Create a new SpaceLocation object. /// </summary> /// <param name="spaceId">Initial value of the SpaceId property.</param> /// <param name="markerTop">Initial value of the MarkerTop property.</param> /// <param name="markerLeft">Initial value of the MarkerLeft property.</param> /// <param name="markerWidth">Initial value of the MarkerWidth property.</param> /// <param name="markerHeight">Initial value of the MarkerHeight property.</param> /// <param name="canvasWidth">Initial value of the CanvasWidth property.</param> /// <param name="canvasHeight">Initial value of the CanvasHeight property.</param> public static SpaceLocation CreateSpaceLocation(global::System.Int32 spaceId, global::System.Int32 markerTop, global::System.Int32 markerLeft, global::System.Int32 markerWidth, global::System.Int32 markerHeight, global::System.Int32 canvasWidth, global::System.Int32 canvasHeight) { SpaceLocation spaceLocation = new SpaceLocation(); spaceLocation.SpaceId = spaceId; spaceLocation.MarkerTop = markerTop; spaceLocation.MarkerLeft = markerLeft; spaceLocation.MarkerWidth = markerWidth; spaceLocation.MarkerHeight = markerHeight; spaceLocation.CanvasWidth = canvasWidth; spaceLocation.CanvasHeight = canvasHeight; return spaceLocation; }