31 lines
631 B
Java
31 lines
631 B
Java
package be.naaturel.boardmateapi.services;
|
|
|
|
import be.naaturel.boardmateapi.models.Party;
|
|
import be.naaturel.boardmateapi.repository.CustomPartyRepoImpl;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class PartyService {
|
|
|
|
private final CustomPartyRepoImpl repo;
|
|
|
|
@Autowired
|
|
public PartyService(CustomPartyRepoImpl repo){
|
|
this.repo = repo;
|
|
}
|
|
|
|
public Party retrieveParty(String id){
|
|
return null;
|
|
}
|
|
|
|
public String create(){
|
|
return null;
|
|
}
|
|
|
|
public String addMove(){
|
|
return null;
|
|
}
|
|
|
|
}
|