Fix: renamed all the tables, with repo and controller associated to them (might have missed some), and fix some key dependency issues
This commit is contained in:
@ -9,20 +9,20 @@ import org.springframework.web.server.ResponseStatusException;
|
||||
@Service
|
||||
public class SharedApiService {
|
||||
|
||||
public Iterable<Sections> getLCSection(String projectId, String title, String date) {
|
||||
public Iterable<SectionCell> getLCSection(String projectId, String title, String date) {
|
||||
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
public Iterable<Entrepreneurs> getEntrepreneursByProjectId(int projectId) {
|
||||
public Iterable<Entrepreneur> getEntrepreneursByProjectId(int projectId) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
public Iterable<Administrateurs> getAdminByProjectId(int projectId) {
|
||||
public Iterable<Administrator> getAdminByProjectId(int projectId) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
public Iterable<Appointment> getAppointmentsByProjectId(int projectId) {
|
||||
public Iterable<DelAppointment> getAppointmentsByProjectId(int projectId) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
@ -30,7 +30,7 @@ public class SharedApiService {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
|
||||
public void createAppointmentRequest(Appointment appointment) {
|
||||
public void createAppointmentRequest(DelAppointment appointment) {
|
||||
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user