Apex Code |
global class Ctrl078_CapacityCalendar {
@RemoteAction
global static List<ServiceResourceCapacity> deleteCapacities(List<Id> capacitiesIds) {
return null;
}
@RemoteAction
global static List<ServiceResourceCapacity> getMonthlyCapacities(String startDateString, String endDateString, Id resourceId) {
return null;
}
@RemoteAction
global static List<ServiceResourceCapacity> saveChangesToCapacity(Id capacityId, Id resourceId, String periodStart, Integer hoursCapacity, Integer servicesCapacity, String durationType, Integer daysDiff) {
return null;
}
@RemoteAction
global static List<ServiceResourceCapacity> updateMultipleCapacities(List<Id> capacitiesIds, Integer hoursCap, Integer servicesCap) {
return null;
}
}
|