fix non tanto fix di springBoot
This commit is contained in:
32
src/main/java/ch/progetto152/services/UserService.java
Normal file
32
src/main/java/ch/progetto152/services/UserService.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user