public void CopyTo(PrintSet obj) { obj.ID = this.ID; obj.TemplateType = this.TemplateType; obj.TemplatePath = this.TemplatePath; obj.ACTIVE = this.ACTIVE; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; }
public Object Clone() { PrintSet obj = new PrintSet(); obj.ID = this.ID; obj.TemplateType = this.TemplateType; obj.TemplatePath = this.TemplatePath; obj.ACTIVE = this.ACTIVE; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; return(obj); }