19 lines
408 B
C#
19 lines
408 B
C#
|
|
using System.Linq;
|
|||
|
|
using BeWo.Report.ReportObjects;
|
|||
|
|
|
|||
|
|
namespace BeWo.Report.DefaultReports
|
|||
|
|
{
|
|||
|
|
public partial class ValidationMessagesReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<ValidationMessageListRO>
|
|||
|
|
{
|
|||
|
|
public ValidationMessagesReport()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void SetReportDataSource(ValidationMessageListRO pRO)
|
|||
|
|
{
|
|||
|
|
objectDataSource1.DataSource = pRO;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|