29 lines
543 B
C#
29 lines
543 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|