Ejemplo n.º 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";
        }
Ejemplo n.º 2
0
 protected BasePage(ICommonPageSupport commonPageSupport, IParentChapter chapter)
 {
     mCommonPageSupport = commonPageSupport;
     mChapter = chapter;
 }
Ejemplo n.º 3
0
 protected BaseFileInfo(IParentChapter chapter)
 {
     mChapter = chapter;
 }