I've just read the articles below
here: What is the best approach to use multiple services inside a resource controller?
and here: Can I have multiple services in a Controller class - Spring MVC?
the article said that I shouldn't call multiple services in a Controller class. I should encapsulate all services in a Facade class (Facade pattern).
So Why shouldn't I call multiple services in a Controller class?
And Can I call multiple service in a Service class? Is it correct?