Beispiel #1
0
 public void ReplaceWith(ReportHeader arg)
 {
     this.IsDefault   = arg.IsDefault;
     this.LongName    = arg.LongName;
     this.ReportType  = arg.ReportType;
     this.ShortName   = arg.ShortName;
     this.XmlFileName = arg.XmlFileName;
 }
Beispiel #2
0
 public ReportHeader( string longName, string xmlFileName, ReportHeaderType type )
     : this(longName, xmlFileName)
 {
     this.ReportType = type;
 }
Beispiel #3
0
 public void ReplaceWith( ReportHeader arg )
 {
     this.IsDefault = arg.IsDefault;
     this.LongName = arg.LongName;
     this.ReportType = arg.ReportType;
     this.ShortName = arg.ShortName;
     this.XmlFileName = arg.XmlFileName;
 }
Beispiel #4
0
 public ReportHeader(string longName, string xmlFileName, ReportHeaderType type) :
     this(longName, xmlFileName)
 {
     this.ReportType = type;
 }