master
 1namespace Notepad.Presentation.Core {
 2    public class ApplicationController : IApplicationController {
 3        private readonly IPresenterRegistry registeredPresenters;
 4
 5        public ApplicationController(IPresenterRegistry presenterRegistry) {
 6            registeredPresenters = presenterRegistry;
 7        }
 8
 9        public void Run<Presenter>() where Presenter : IPresenter {
10            registeredPresenters.FindAnImplementationOf<Presenter>().Initialize();
11        }
12    }
13}