예제 #1
0
 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;
 }
예제 #2
0
 public void Update(int ID, ProjectEntity Entity)
 {
     this._IProjectService.Update(ID, Entity);
 }