App Server .NET MVC4 How do I config IoC container/dependency resolver

regarding the sample code here
https://thehub.thomsonreuters.com/docs/DOC-726842 says: > simply inject > TR.AppServer.Common.Interfaces.ILogger > interface into the constructor and it > will be provided to you when your > controller is created. private readonly ILogger _logger; public SampleController(ILogger logger) { _logger = logger; } I assume this has been done by the underlying IoC container. So how do I config additional interface/dependency for my controller public SampleController(ILogger logger, ISomeOtherService service) //where to put ISomeOtherService implementation mapping