Exemplo n.º 1
0
 public ViewPageContentViewData(ProjectFirmaModels.Models.FirmaPage firmaPage, bool showEditButton)
 {
     FirmaPageContentHtmlString = firmaPage.GetFirmaPageContentHtmlString();
     FirmaPageDisplayName       = firmaPage.GetFirmaPageDisplayName();
     ShowEditButton             = showEditButton;
     HasPageContent             = firmaPage.HasPageContent();
     EditPageContentUrl         = SitkaRoute <FirmaPageController> .BuildUrlFromExpression(t => t.EditInDialog(firmaPage));
 }
Exemplo n.º 2
0
 public DisplayPageContentViewData(FirmaSession currentFirmaSession, ProjectFirmaModels.Models.FirmaPage firmaPage, bool showEditButton) : base(currentFirmaSession)
 {
     PageTitle = firmaPage.GetFirmaPageDisplayName();
     ViewWholePageContentViewData = new ViewPageContentViewData(firmaPage, showEditButton);
 }