예제 #1
0
        public AboutPage(ICommonPageSupport commonPageSupport, IParentChapter chapter)
            : base(commonPageSupport, chapter)
        {
            NLog.LogManager.GetCurrentClassLogger().Info("constructor");

            this.Title = "About Page";

            this.TextTitle = "About!";

            this.ContentFile = "AboutPage.html";
        }
예제 #2
0
 protected BasePage(ICommonPageSupport commonPageSupport, IParentChapter chapter)
 {
     mCommonPageSupport = commonPageSupport;
     mChapter = chapter;
 }
예제 #3
0
 protected BaseFileInfo(IParentChapter chapter)
 {
     mChapter = chapter;
 }