1namespace Notepad.Presentation.Core { 2 public interface IApplicationController { 3 void Run<Presenter>() where Presenter : IPresenter; 4 } 5}