コード例 #1
0
        public CustomWebFormsMvpPresenterFactory(ICustomPresenterFactory presenterFactory)
        {
            if (presenterFactory == null)
            {
                throw new ArgumentNullException(nameof(presenterFactory));
            }

            this.presenterFactory = presenterFactory;
        }
コード例 #2
0
        public WebFormsMvpPresenterFactory(ICustomPresenterFactory factory)
        {
            Guard.WhenArgument(factory, "ICustomPresenterFactory").IsNull().Throw();

            this.factory = factory;
        }
コード例 #3
0
 public WebFormsMvpPresenterFactory(ICustomPresenterFactory factory)
 {
     this.factory = factory;
 }
コード例 #4
0
 public SportSquareMvpPresenterFactory(ICustomPresenterFactory factory)
 {
     this.factory = factory;
 }