Files
BeWoPlaner/ReportImp/BeWoAlsdorf/InvoiceCustomerReport.cs
2016-06-27 01:45:38 +02:00

18 lines
450 B
C#

using BeWo.Report.ReportObjects;
namespace BeWo.Report.DefaultReports
{
public partial class InvoiceCustomerReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<InvoiceCustomerRO>
{
public InvoiceCustomerReport()
{
InitializeComponent();
}
public void SetReportDataSource(InvoiceCustomerRO pRO)
{
this.bindingSource1.DataSource = pRO;
}
}
}