fix non tanto fix di springBoot

This commit is contained in:
grata
2023-04-26 16:20:21 +02:00
parent 67cd5588e1
commit 22aeac0b03
16 changed files with 160 additions and 216 deletions

View File

@@ -0,0 +1,32 @@
package ch.progetto152.services;
import ch.progetto152.entity.User;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class UserService {
public List<User> getAllUsers() {
return null;
}
public User getUserByIdService(Long id) {
return null;
}
public User createUser(User user) {
return null;
}
public User updateUser(Long id, User user) {
return null;
}
public boolean deleteUser(Long id) {
return false;
}
}