Add Entity, service and Repo

This commit is contained in:
Olivier PARPAILLON
2025-07-16 10:03:38 +02:00
parent ace7e63af9
commit 16484f6062
4 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package fr.eni.demo.bll;
public interface FactureService {
}

View File

@@ -0,0 +1,4 @@
package fr.eni.demo.bll;
public class FactureServiceImpl implements FactureService {
}