Epiworx.Business.Sprint.Update C# (CSharp) Method

Update() protected method

protected Update ( SprintData data ) : void
data SprintData
return void
        protected void Update(SprintData data)
        {
            data.SprintId = this.SprintId;
            data.CompletedDate = this.CompletedDate;
            data.Description = this.Description;
            data.IsActive = this.IsActive;
            data.IsArchived = this.IsArchived;
            data.IsCompleted = this.IsCompleted;
            data.Duration = this.Duration;
            data.EstimatedCompletedDate = this.EstimatedCompletedDate;
            data.EstimatedDuration = this.EstimatedDuration;
            data.Name = this.Name;
            data.ProjectId = this.ProjectId;
            data.CreatedBy = this.CreatedBy;
            data.CreatedDate = this.CreatedDate;
            data.ModifiedBy = this.ModifiedBy;
            data.ModifiedDate = this.ModifiedDate;
        }