Der Überschneidungstest ist angepasst und die Bugs behoben

This commit is contained in:
Lyndon Jetten
2020-12-02 21:46:58 +01:00
parent 8cc0de74eb
commit cb2c97026f
5 changed files with 106 additions and 115 deletions

View File

@@ -2305,5 +2305,10 @@ namespace BeWo.Service.ServiceImplementations
return rootAppointment == null ? null : MapperFactory.SchedulerAppointmentDCSchedulerAppointment.MapToNewDC(rootAppointment);
}
public string ValidateSchedulerAppointment(DateTime start, DateTime end, IEnumerable<long> employees, IEnumerable<long> customers, List<long> resources, long originator, long? appointmentOid, Guid? recurrenceId, int occurrenceIndex = 0, bool shouldSkipResourceAvailability = false)
{
return DAOFactory.SearchDAO.ValidateSchedulerAppointment(start, end, employees, customers, resources, originator, appointmentOid, recurrenceId, occurrenceIndex);
}
}
}