d3monpro / esprit

esprit restaurant
0 stars 0 forks source link

Create Services #2

Open ZakariaSaafi opened 1 year ago

ZakariaSaafi commented 1 year ago

TODO

Create package named service including:

User Service Card Service Category Service Menu Service

Service is needed to synchronize between classes and relations where we can define our needed methods then call them 👍

FYI Service class contains only definition of methods for example :

public class UserService{

public void addUser(); public User updateUser(User user); public void deleteUser(User user); public List displayAllUsers();

}

ZakariaSaafi commented 1 year ago

Ingredient Service is created 👍