package com.archiweb.service; import org.springframework.stereotype.Service; @Service public class TraceService { public void traceRemise(String employeeEmail, String codeValue) { System.out.printf("[TRACE] Code %s remis par %s%n", codeValue, employeeEmail); } }