2016-06-27 01:45:38 +02:00
|
|
|
using BeWo.Report.ReportObjects;
|
2018-10-08 11:57:16 +02:00
|
|
|
using BS.Shared.Core;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
namespace BeWo.Report.DefaultReports
|
|
|
|
|
{
|
2018-10-08 11:57:16 +02:00
|
|
|
[IDSpecificClass(Identifier = "QuittierungsbelegAlt")]
|
2016-06-27 01:45:38 +02:00
|
|
|
public partial class Stundenzettel : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<ServicesOverviewRO>
|
|
|
|
|
{
|
|
|
|
|
public Stundenzettel()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetReportDataSource(ServicesOverviewRO pRO)
|
|
|
|
|
{
|
|
|
|
|
bindingSource1.DataSource = pRO;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|