LeadProductView.java

package cz.vsb.crm.dto;

import cz.vsb.crm.model.LeadProduct;

public record LeadProductView(
        Long id,
        Long leadId,
        Long productId,
        String productName,
        Integer quantity) {

    public static LeadProductView from(LeadProduct leadProduct) {
        return new LeadProductView(
                leadProduct.getId(),
                leadProduct.getLead().getId(),
                leadProduct.getProduct().getId(),
                leadProduct.getProduct().getName(),
                leadProduct.getQuantity());
    }
}