SozialeDienstleistungenGessnerReports/Validation/ServiceRecordValidator - keine Kontrolle auf Zukunft

This commit is contained in:
2024-02-22 14:19:45 +01:00
parent d47b8eb43b
commit 7035628c50
2 changed files with 13 additions and 0 deletions

View File

@@ -112,6 +112,7 @@
<Compile Include="ServicesOverviewReport.Designer.cs">
<DependentUpon>ServicesOverviewReport.cs</DependentUpon>
</Compile>
<Compile Include="Validation\ServiceRecordValidator.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="CustomerDataReport.resx">

View File

@@ -0,0 +1,12 @@
using BeWo.Service.Plugins;
namespace SozialeDienstleistungenGessnerReports.Validation
{
public class BetreuwoServiceRecordValidator : ServiceRecordValidator
{
public override bool CheckZukunft()
{
return false;
}
}
}