ITimeU.Models.Runtime.CreateRuntime C# (CSharp) Method

CreateRuntime() public static method

Create a new Runtime object.
public static CreateRuntime ( global runtimeID, global runtime1, global checkpointID, global isMerged, global isDeleted ) : Runtime
runtimeID global Initial value of the RuntimeID property.
runtime1 global Initial value of the Runtime1 property.
checkpointID global Initial value of the CheckpointID property.
isMerged global Initial value of the IsMerged property.
isDeleted global Initial value of the IsDeleted property.
return Runtime
        public static Runtime CreateRuntime(global::System.Int32 runtimeID, global::System.Int32 runtime1, global::System.Int32 checkpointID, global::System.Boolean isMerged, global::System.Boolean isDeleted)
        {
            Runtime runtime = new Runtime();
            runtime.RuntimeID = runtimeID;
            runtime.Runtime1 = runtime1;
            runtime.CheckpointID = checkpointID;
            runtime.IsMerged = isMerged;
            runtime.IsDeleted = isDeleted;
            return runtime;
        }