Files
SteamWare/SteamWareLib/reportGen.cs
T
2020-02-12 09:01:46 +01:00

33 lines
813 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SteamWare
{
/// <summary>
/// classe contenente oggetti generazione report SSRS (configurazioni + tabella valori)
/// </summary>
public class reportData
{
/// <summary>
/// Template report (rdlc)
/// </summary>
public string template { get; set; } = "";
/// <summary>
/// Configurazione device di stampa
/// </summary>
public devInfoParam deviceInfoParam { get; set; }
/// <summary>
/// Nome del ReportDataSource
/// </summary>
public string rdsName { get; set; } = "";
/// <summary>
/// Contenuto tabellare del ReportDataSource
/// </summary>
public DataTable rdsTable { get; set; }
}
}