Unlock this challenge:
How can you use a service in a Symfony controller?
Both B and D are correct
By adding it as a method argument inside the controller's action
Call a static method get() on the service you want to use to get its instance.
get()
By adding it as a constructor argument of the controller class