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