23 lines
549 B
C#
23 lines
549 B
C#
using BeWo.Service.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Biotop.Validation
|
|
{
|
|
public class CustomServiceRecordValidator : ServiceRecordValidator
|
|
{
|
|
public override string[] GetIgnoreCategoriesForOverlappingCheck()
|
|
{
|
|
return new[] { "Arbeitszeit" };
|
|
}
|
|
|
|
public override String[] GetIgnoreServiceDescriptionsForOverlappingCheck()
|
|
{
|
|
return new[] { "Arbeitszeit" };
|
|
}
|
|
}
|
|
}
|