18 lines
409 B
C#
18 lines
409 B
C#
using BeWo.Service.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GrundsteinEV.Validation
|
|
{
|
|
class CustomServiceRecordValidator : ServiceRecordValidator
|
|
{
|
|
public override string[] GetIgnoreCategoriesForOverlappingCheck()
|
|
{
|
|
return new[] { "Arbeitszeiterfassung" };
|
|
}
|
|
}
|
|
}
|