12 lines
225 B
C#
12 lines
225 B
C#
using BeWo.Service.Plugins;
|
|
|
|
namespace KompassBeWoWesel.Validation
|
|
{
|
|
public class CustomServiceRecordValidator : ServiceRecordValidator
|
|
{
|
|
public override bool CheckZukunft()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
} |