public object Clone()
        {
            var temp = new PrintFormatItemInfo();

            temp.ModuleID    = this.ModuleID;
            temp.Name        = this.Name;
            temp.PrintFormat = string.IsNullOrWhiteSpace(this._printFormat)?"":string.Copy(this.PrintFormat);

            return(temp);
        }
 public PrintFormatDefaultChanged(PrintFormatItemInfo item)
 {
     Item = item;
 }