mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 05:25:50 +00:00
Update UserService.java
Signed-off-by: jeet041 <mahorjitendra@gmail.com>
This commit is contained in:
parent
7c88063cf0
commit
a51060eb87
1 changed files with 4 additions and 1 deletions
|
@ -15,6 +15,9 @@ public class UserService {
|
||||||
public void notifyUser(int userId) {
|
public void notifyUser(int userId) {
|
||||||
System.out.println("Main: sending notification to user " + userId);
|
System.out.println("Main: sending notification to user " + userId);
|
||||||
}
|
}
|
||||||
|
public void notifyUser2(int userId) {
|
||||||
|
System.out.println("dev: sending notification to user " + userId);
|
||||||
|
}
|
||||||
|
|
||||||
public void deleteUser(int userId) {
|
public void deleteUser(int userId) {
|
||||||
logDeletion(userId);
|
logDeletion(userId);
|
||||||
|
|
Loading…
Reference in a new issue