Files
BeWoPlaner/ReportImp/BetreuWoReports/Service/ResourceService.cs
Lyndon Jetten 429d4966e4 FaC/MoK:
- neue Rechte bezüglich Unterschriften hinzugefügt, aber noch unbenutzt
- Vollbildmodalpopup für Reports hinzugefügt, aber noch unbenutzt

Übersetzungen in EnumTranslations.cs (z. 714ff) gegebenenfalls überarbeiten!
2023-08-16 14:18:27 +02:00

30 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using BeWo.Data.Access;
using BeWo.Service.Plugins;
using BS.Shared.DataContracts;
namespace BetreuWoReports.Service
{
public class CustomerResourceService : ResourceService
{
public override 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, true);
}
public override List<ResourceDC> CheckResourceAvailability(DateTime start, DateTime end, List<long> resourceOids, long? selectedAppointmentOid)
{
return new List<ResourceDC>();
}
public override Dictionary<string, List<string>> CheckResourceAvailabilityWithBookingEmployees(DateTime start, DateTime end, List<long> resourceOids, long? selectedAppointmentOid, Guid? recurrenceId, int occurrenceIndex = 0, bool shouldSkipResourceAvailability = false)
{
return new Dictionary<string, List<string>>();
}
}
}