Beispiel #1
0
 public CustomFooterViewData(ProjectFirmaModels.Models.FirmaPage firmaPage, bool showEditButton, FirmaSession currentFirmaSession)
 {
     CurrentFirmaSession     = currentFirmaSession;
     ViewPageContentViewData = new ViewPageContentViewData(firmaPage, showEditButton);
 }
Beispiel #2
0
 public DisplayPageContentViewData(FirmaSession currentFirmaSession, ProjectFirmaModels.Models.FirmaPage firmaPage, bool showEditButton) : base(currentFirmaSession)
 {
     PageTitle = firmaPage.GetFirmaPageDisplayName();
     ViewWholePageContentViewData = new ViewPageContentViewData(firmaPage, showEditButton);
 }
Beispiel #3
0
 public DisplayPageContentViewData(FirmaSession currentFirmaSession, ProjectFirmaModels.Models.CustomPage customPage, bool showEditButton) : base(currentFirmaSession)
 {
     PageTitle = customPage.GetFirmaPageDisplayName();
     ViewWholePageContentViewData   = new ViewPageContentViewData(customPage, showEditButton);
     DisplayDocumentLibraryViewData = new DisplayDocumentLibraryViewData(customPage, currentFirmaSession);
 }
Beispiel #4
0
 public DisplayPageContentViewData(Person currentPerson, IFirmaPage firmaPage, bool showEditButton) : base(currentPerson)
 {
     PageTitle = firmaPage.FirmaPageDisplayName;
     ViewWholePageContentViewData = new ViewPageContentViewData(firmaPage, showEditButton);
 }