Files

21 lines
514 B
C#
Raw Permalink Normal View History

using System;
using BeWo.Report.ReportObjects;
using BeWo.Report;
namespace BeWoNeussLauthUndLauth
{
public partial class Leistungsdokumentation : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<FLSReportRO>
{
public Leistungsdokumentation()
{
InitializeComponent();
}
public void SetReportDataSource(FLSReportRO pRO)
{
//if (pRO.FLSReportGroups[0].
this.bindingSource1.DataSource = pRO;
}
}
}