ITimeU.Models.Checkpoint.CreateCheckpoint C# (CSharp) Method

CreateCheckpoint() public static method

Create a new Checkpoint object.
public static CreateCheckpoint ( global checkpointID, global isDeleted, global sortOrder ) : Checkpoint
checkpointID global Initial value of the CheckpointID property.
isDeleted global Initial value of the IsDeleted property.
sortOrder global Initial value of the SortOrder property.
return Checkpoint
        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;
        }