示例#1
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="assetService">For retrieval of asset information.</param>
 /// <param name="authenticationService">Provides access to authentication related code.</param>
 /// <param name="authorizationService">Authorization service.</param>
 /// <param name="formHelperService">Provides access to form helper methods for tasks such as creating form results.</param>
 /// <param name="pagePortalService">Page portal service.</param>
 /// <param name="webService">Used to retrieve and update web details.</param>
 public ThemeFormService(IAssetService assetService, IAuthenticationService authenticationService, IAuthorizationService authorizationService, IFormHelperService formHelperService, IPagePortalService pagePortalService, IWebService webService)
 {
     _assetService          = assetService;
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _formHelperService     = formHelperService;
     _pagePortalService     = pagePortalService;
     _webService            = webService;
 }
示例#2
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication related code.</param>
 /// <param name="authorizationService">Authorizatoin service.</param>
 /// <param name="formHelperService">Provides access to form helper methods for tasks such as creating form results.</param>
 /// <param name="masterPageService">Provides access to master pages.</param>
 /// <param name="pagePortalService">Page portal service.</param>
 /// <param name="pageService">Provices access to pages.</param>
 public PageFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IFormHelperService formHelperService, IMasterPageService masterPageService, IPagePortalService pagePortalService, IPageService pageService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _formHelperService     = formHelperService;
     _masterPageService     = masterPageService;
     _pagePortalService     = pagePortalService;
     _pageService           = pageService;
 }
示例#3
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="assetService">Asset service.</param>
 /// <param name="authenticationService">Authentication service.</param>
 /// <param name="pagePortalService">Provides access to portal related page functionality.</param>
 /// <param name="pageService">Provides access to pages.</param>
 /// <param name="uploadService">Provides access to uploads.</param>
 /// <param name="webHelperService">Low level access to web components.</param>
 public PagesController(IAssetService assetService, IAuthenticationService authenticationService, IDomainService domainService, IPagePortalService pagePortalService, IPageService pageService, IUploadService uploadService, IWebHelperService webHelperService, IWebService webService)
 {
     _assetService          = assetService;
     _authenticationService = authenticationService;
     _domainService         = domainService;
     _pagePortalService     = pagePortalService;
     _pageService           = pageService;
     _uploadService         = uploadService;
     _webHelperService      = webHelperService;
     _webService            = webService;
 }
示例#4
0
 public PagesController(IAuthenticationService authenticationService, IPagePortalService pagePortalService)
 {
     _authenticationService = authenticationService;
     _pagePortalService     = pagePortalService;
 }
示例#5
0
 public TagCloudService(IPagePortalService pagePortalService, IPageService pageService, ITagCloudRepository tagCloudRepository)
 {
     _pagePortalService  = pagePortalService;
     _pageService        = pageService;
     _tagCloudRepository = tagCloudRepository;
 }