public void CopyFrom(Moudle source) { base.CopyFrom(source); //this.Id = source.Id; //this.Status = source.Status; //this.Name = source.Name; this.Creator = source.Creator; this.CreateTime = source.CreateTime; this.Description = source.Description; this.Orderno = source.Orderno; //this.ParentId = source.ParentId; //this.Url = source.Url; this.MoudleType = source.MoudleType; //this.Category = source.Category; //this.NeedPower = source.NeedPower; //this.NameSpace = source.NameSpace; //this.Parent = source.Parent; //this.Children = source.Children; //this.HierarchicalPath = source.HierarchicalPath; }
public Moudle(Moudle source) { this.CopyFrom(source); }