public ProjectInfo(ProjectEntity Entity) : this() { this.ID = Entity.ID; this.Number = Entity.Number; this.Name = Entity.Name; this.Type = Entity.Type; this.Kind = Entity.Kind; this.SecretLevel = Entity.SecretLevel; this.VolLevel = Entity.VolLevel; this.Manager = Entity.Manager; this.CustomerID = Entity.CustomerID; this.CreateDate = Entity.CreateDate; this.DeliveryDate = Entity.DeliveryDate; this.Note = Entity.Note; this.IsDeleted = Entity.IsDeleted; }
public void Update(int ID, ProjectEntity Entity) { this._IProjectService.Update(ID, Entity); }