/// <summary> /// Deprecated Method for adding a new object to the Checkpoints EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCheckpoints(Checkpoint checkpoint) { base.AddObject("Checkpoints", checkpoint); }
/// <summary> /// Create a new Checkpoint object. /// </summary> /// <param name="checkpointID">Initial value of the CheckpointID property.</param> public static Checkpoint CreateCheckpoint(global::System.Int32 checkpointID) { Checkpoint checkpoint = new Checkpoint(); checkpoint.CheckpointID = checkpointID; return checkpoint; }
/// <summary> /// Create a new Checkpoint object. /// </summary> /// <param name="checkpointID">Initial value of the CheckpointID property.</param> /// <param name="isDeleted">Initial value of the IsDeleted property.</param> /// <param name="sortOrder">Initial value of the SortOrder property.</param> public static Checkpoint CreateCheckpoint(global::System.Int32 checkpointID, global::System.Boolean isDeleted, global::System.Int32 sortOrder) { Checkpoint checkpoint = new Checkpoint(); checkpoint.CheckpointID = checkpointID; checkpoint.IsDeleted = isDeleted; checkpoint.SortOrder = sortOrder; return checkpoint; }