Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReportExecuteRequestDTO" /> class.
 /// </summary>
 /// <param name="identifier">identifier.</param>
 /// <param name="format">Possible values:  1: Pdf  2: Xps  3: HtmlTable  4: HtmlSpan  5: HtmlDiv  6: Rtf  7: RtfTable  8: RtfFrame  9: RtfWinWord  10: RtfTabbedText  11: Text  12: Excel  13: ExcelXml  14: Excel2007  15: Word2007  16: Xml  17: Csv  18: Dif  19: Sylk  20: ImageGif  21: ImageBmp  22: ImagePng  23: ImageTiff  24: ImageJpeg  25: ImagePcx  26: ImageEmf  27: Mht  28: Dbf  29: Html  30: Ods  31: Odt  32: Ppt2007  33: ImageSvg  34: ImageSvgz .</param>
 /// <param name="parameters">Parameters to input for the execution.</param>
 public ReportExecuteRequestDTO(ReportIdentifier identifier = default(ReportIdentifier), int?format = default(int?), List <ReportParamDTO> parameters = default(List <ReportParamDTO>))
 {
     this.Identifier = identifier;
     this.Format     = format;
     this.Parameters = parameters;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReportExecuteMultipleRequestDTO" /> class.
 /// </summary>
 /// <param name="identifier">identifier.</param>
 /// <param name="formats">Report output formats.</param>
 /// <param name="parameters">Parameters to input for the execution.</param>
 public ReportExecuteMultipleRequestDTO(ReportIdentifier identifier = default(ReportIdentifier), List <int?> formats = default(List <int?>), List <ReportParamDTO> parameters = default(List <ReportParamDTO>))
 {
     this.Identifier = identifier;
     this.Formats    = formats;
     this.Parameters = parameters;
 }