20 lines
442 B
C#
20 lines
442 B
C#
|
|
using System.Linq;
|
|||
|
|
using BeWo.Report.ReportObjects;
|
|||
|
|
|
|||
|
|
namespace BeWo.Report.DefaultReports
|
|||
|
|
{
|
|||
|
|
public partial class AbwesenheitsPrintReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<AbwesenheitsPrintRO>
|
|||
|
|
{
|
|||
|
|
public AbwesenheitsPrintReport()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void SetReportDataSource(AbwesenheitsPrintRO pRO)
|
|||
|
|
{
|
|||
|
|
objectDataSource1.DataSource = pRO;
|
|||
|
|
labelTitel.Text = pRO.Titel;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|