public async Task DeleteEquipmentByIdAsync(int equipmentId, CancellationToken token)
 {
     await _equipmentRepository.DeleteEquipmentByIdAsync(equipmentId, token);
 }