Files
BeWoPlaner/ReportImp/CaritasAachen/ServicesOverviewReportAlt.cs
2019-02-12 19:32:04 +01:00

26 lines
637 B
C#

using System;
using System.Collections;
using System.ComponentModel;
using DevExpress.XtraReports.UI;
using BeWo.Report.ReportObjects;
using BeWo.Report;
namespace BeWo.CaritasAachen.Alt
{
public partial class Stundenzettel : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<ServicesOverviewRO>
{
public Stundenzettel()
{
InitializeComponent();
}
public void SetReportDataSource(ServicesOverviewRO pRO)
{
if (String.IsNullOrEmpty(pRO.AbsenceTimes))
xrCheckBox1.Checked = true;
this.bindingSource1.DataSource = pRO;
}
}
}