master
 1using Notepad.Infrastructure.Container;
 2
 3namespace Notepad.Presentation.Core {
 4    public interface IPresenterRegistry {
 5        Presenter FindAnImplementationOf<Presenter>() where Presenter : IPresenter;
 6    }
 7
 8    public class RegisteredPresenter : IPresenterRegistry {
 9        public Presenter FindAnImplementationOf<Presenter>() where Presenter : IPresenter {
10            return Resolve.DependencyFor<Presenter>();
11        }
12    }
13}