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
        public AboutChapter(ICommonPageSupport commonPageSupport)
            : base(commonPageSupport)
        {
            NLog.LogManager.GetCurrentClassLogger().Info("constructor");

            mLinkInfo = new LinkInfo();
            mLinkInfo.Label = "About";

            this.SourceDirName = "About";
            
            this.AddPage(new AboutPage(commonPageSupport, this));
        }
Ejemplo n.º 3
0
        public TeamChapter(ICommonPageSupport commonPageSupport)
            : base(commonPageSupport)
        {
            NLog.LogManager.GetCurrentClassLogger().Info("constructor");

            mLinkInfo = new LinkInfo();
            mLinkInfo.Label = "Team";
            mLinkInfo.Url = "team";

            this.TargetDirName = "team";

            this.SourceDirName = "Team";

            this.AddPage(new TeamPage(commonPageSupport, this));

            this.AddFile(new TstFile(this));
        }
Ejemplo n.º 4
0
 protected BasePage(ICommonPageSupport commonPageSupport, IParentChapter chapter)
 {
     mCommonPageSupport = commonPageSupport;
     mChapter = chapter;
 }
Ejemplo n.º 5
0
 protected BaseCharter(ICommonPageSupport commonPageSupport)
 {
     mCommonPageSupport = commonPageSupport;
 }