package fr.la_banquise.backend.converter; import fr.la_banquise.backend.data.model.TpModel; import fr.la_banquise.backend.domain.entity.TpItemEntity; /** * Mapper */ public class Mapper { public static TpItemEntity toTpEntity(TpModel tp) { return new TpItemEntity(tp.id, tp.name, tp.description, tp.pdfLink, tp.givenLink, tp.respo, tp.endDate); } }