/// <summary> /// Deprecated Method for adding a new object to the Step EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToStep(Step step) { base.AddObject("Step", step); }
/// <summary> /// Create a new Step object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="isFinished">Initial value of the IsFinished property.</param> /// <param name="startTime">Initial value of the StartTime property.</param> public static Step CreateStep(global::System.Int32 id, global::System.Boolean isFinished, global::System.DateTime startTime) { Step step = new Step(); step.Id = id; step.IsFinished = isFinished; step.StartTime = startTime; return step; }