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

24 lines
591 B
C#

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