Add some structure

This commit is contained in:
2025-12-10 06:41:26 +01:00
parent 413f5b7cfc
commit a89628cd10
71 changed files with 140 additions and 29 deletions

View File

@@ -1,7 +1,8 @@
package be.naaturel.boardmateapi.services;
import be.naaturel.boardmateapi.models.Party;
import be.naaturel.boardmateapi.repository.test.CustomPartyRepoImpl;
import be.naaturel.boardmateapi.repository.CustomPartyRepoImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
@@ -9,6 +10,7 @@ public class PartyService {
private final CustomPartyRepoImpl repo;
@Autowired
public PartyService(CustomPartyRepoImpl repo){
this.repo = repo;
}