public CustomWebFormsMvpPresenterFactory(ICustomPresenterFactory presenterFactory)
        {
            if (presenterFactory == null)
            {
                throw new ArgumentNullException(nameof(presenterFactory));
            }

            this.presenterFactory = presenterFactory;
        }
        public WebFormsMvpPresenterFactory(ICustomPresenterFactory factory)
        {
            Guard.WhenArgument(factory, "ICustomPresenterFactory").IsNull().Throw();

            this.factory = factory;
        }
 public WebFormsMvpPresenterFactory(ICustomPresenterFactory factory)
 {
     this.factory = factory;
 }
示例#4
0
 public SportSquareMvpPresenterFactory(ICustomPresenterFactory factory)
 {
     this.factory = factory;
 }