Files
BeWoPlaner/ReportImp/Mittelpunkt/Teamauslastung.cs

29 lines
543 B
C#
Raw Normal View History

using System;
using BeWo.Report;
using BeWo.Report.ReportObjects;
using BS.Shared.Core;
namespace Mittelpunkt
{
[IDSpecificClass(Identifier = "Teamauslastung")]
public partial class Teamauslastung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<MitarbeiterauslastungRO>
{
public Teamauslastung()
{
InitializeComponent();
}
public void SetReportDataSource(MitarbeiterauslastungRO pRO)
{
AuslastungBerechnung b = new AuslastungBerechnung();
b.CreateReport(pRO);
this.bindingSource1.DataSource = pRO;
}
}
}