18 lines
352 B
C#
18 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
using BeWo.Report;
|
|
using BeWo.Report.ReportObjects;
|
|
|
|
|
|
namespace BeWo.BeWoSchillingReports
|
|
{
|
|
public class CustomAuslastungBerechnung : AuslastungBerechnung
|
|
{
|
|
protected override bool CheckIfApprovedGreaterZero()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|