taiage-spring/src/main/java/es/tatvil/taiageweb/empleo/NotificadorService.java

11 lines
264 B
Java

package es.tatvil.taiageweb.empleo;
import org.springframework.stereotype.Service;
@Service
public class NotificadorService {
public void notificar(PublicacionEmpleo publicacion) {
// TODO: Implementar notificación por email, Telegram y web
}
}