deleteServices method
Future<DecryptedContactDto?>
deleteServices(
- UserDto user,
- DecryptedPatientDto patient,
- List<
DecryptedServiceDto> services, - CryptoConfig<
DecryptedContactDto, ContactDto> config,
Implementation
Future<DecryptedContactDto?> deleteServices(
UserDto user,
DecryptedPatientDto patient,
List<DecryptedServiceDto> services,
CryptoConfig<DecryptedContactDto, ContactDto> config
) {
return deleteServicesWithPatientInfo(user, patient.id, patient.delegations, services, config);
}