}
public static SlotSummaryDTO toSummaryDTO(Slot entity) {
if (entity == null)
return null;
return new SlotSummaryDTO(entity.isConfigured(), entity.getId(), entity.getStatus(), entity.getPrice(), entity.getProductIds().size(), entity.getStartDate(), entity.getEndDate());
}