Ejemplo n.º 1
0
        public UrlBuilder(
            IApplicationContext appContext,
            IParentUrlPageListFactory parentUrlPageListFactory
            )
        {
            if (appContext == null)
                throw new ArgumentNullException("appContext");
            if (parentUrlPageListFactory == null)
                throw new ArgumentNullException("parentUrlPageListFactory");

            this.appContext = appContext;
            this.parentUrlPageListFactory = parentUrlPageListFactory;
        }
Ejemplo n.º 2
0
        public UrlBuilder(
            IApplicationContext appContext,
            IParentUrlPageListFactory parentUrlPageListFactory
            )
        {
            if (appContext == null)
            {
                throw new ArgumentNullException("appContext");
            }
            if (parentUrlPageListFactory == null)
            {
                throw new ArgumentNullException("parentUrlPageListFactory");
            }

            this.appContext = appContext;
            this.parentUrlPageListFactory = parentUrlPageListFactory;
        }