main
1namespace presentation.windows
2{
3    public interface PresenterFactory
4    {
5        T create<T>() where T : Presenter;
6    }
7}