29 lines
503 B
C#
29 lines
503 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BeWo.Report;
|
|
using BeWo.Report.ReportObjects;
|
|
|
|
using BS.Shared.Core;
|
|
using DevExpress.XtraReports.UI;
|
|
|
|
namespace BeWo.Report.DefaultReports
|
|
{
|
|
public partial class RosterIstReport : XtraReport, IBeWoReport<RosterIstRO>
|
|
{
|
|
|
|
public RosterIstReport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetReportDataSource(RosterIstRO pRO)
|
|
{
|
|
|
|
this.RosterIstRO.DataSource = pRO;
|
|
}
|
|
|
|
}
|
|
}
|