Files
BeWoPlaner/Report/DefaultReports/EmployeeCustomerListReport.cs
Christian 8184426879 cb
2022-02-22 11:58:42 +01:00

24 lines
542 B
C#

using System.Linq;
using BeWo.Report.ReportObjects;
namespace BeWo.Report.DefaultReports
{
public partial class EmployeeCustomerListReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<EmployeeCustomerListRO>
{
public EmployeeCustomerListReport()
{
InitializeComponent();
}
public void SetReportDataSource(EmployeeCustomerListRO pRO)
{
//if (pRO.Transaktionen != null)
//{
// pRO.Transaktionen = pRO.Transaktionen.OrderBy(o => o.Belegdatum).ToList();
//}
bindingSource1.DataSource = pRO;
}
}
}