$this->container->get('service_name');
// This work on for SymfonyBundleFrameworkBundleControllerController
// if you are using use SymfonyBundleFrameworkBundleControllerAbstractController , it would prefer to inject dependency
public function method(User $user)
{
$user->callSomeMethod();
}