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

Update() protected method

protected Update ( ProjectData data ) : void
data ProjectData
return void
        protected void Update(ProjectData data)
        {
            data.ProjectId = this.ProjectId;
            data.Description = this.Description;
            data.IsActive = this.IsActive;
            data.IsArchived = this.IsArchived;
            data.Name = this.Name;
            data.CreatedBy = this.CreatedBy;
            data.CreatedDate = this.CreatedDate;
            data.ModifiedBy = this.ModifiedBy;
            data.ModifiedDate = this.ModifiedDate;
        }