15 lines
232 B
C#
15 lines
232 B
C#
using System;
|
|
using BeWo.Report.ReportObjects;
|
|
|
|
|
|
namespace BeWo.CaritasAachen
|
|
{
|
|
public class CustomAuslastungBerechnung : AuslastungBerechnung
|
|
{
|
|
public override bool CreateIst()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|