ITimeU.Models.Checkpoint.CreateCheckpoint C# (CSharp) 메소드

CreateCheckpoint() 공개 정적인 메소드

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.
리턴 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;
        }