Add GameType Entity, Service and Repository. Test add GameType done.

This commit is contained in:
Olivier PARPAILLON
2025-07-09 11:15:17 +02:00
parent 76736405a3
commit eac38d9f4b
5 changed files with 69 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package fr.eni.demo.dal;
import fr.eni.demo.bo.GameType;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface GameTypeRepository extends JpaRepository<GameType, Long> {
}