コード例 #1
0
 public ContactService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IContactRepository contactRepository, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _contactRepository     = contactRepository;
     _formHelperService     = formHelperService;
 }
コード例 #2
0
 public FormFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IElementFactory elementFactory, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _elementFactory        = elementFactory;
     _formHelperService     = formHelperService;
 }
コード例 #3
0
 public AuthenticationFormService(IAuthenticationService authenticationService, IAuthenticationUrlService authenticationUrlService, IFormHelperService formHelperService, IWebService webService)
 {
     _authenticationService    = authenticationService;
     _authenticationUrlService = authenticationUrlService;
     _formHelperService        = formHelperService;
     _webService = webService;
 }
コード例 #4
0
 public PageHeaderAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IElementFactory elementFactory, IFormHelperService formHelperService, IPageService pageService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _elementFactory        = elementFactory;
     _formHelperService     = formHelperService;
     _pageService           = pageService;
 }
コード例 #5
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication features.</param>
 /// <param name="authorizationService">Authorization service.</param>
 /// <param name="formHelperService">Provides assistance with forms.</param>
 /// <param name="testimonialRepository">Repository for administering testimonials in underlying storage.</param>
 /// <param name="webHelperService">Web helper service.</param>
 public TestimonialService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IFormHelperService formHelperService, ITestimonialRepository testimonialRepository, IWebHelperService webHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _formHelperService     = formHelperService;
     _testimonialRepository = testimonialRepository;
     _webHelperService      = webHelperService;
 }
コード例 #6
0
 public AlbumAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IAlbumValidator albumValidator, IElementFactory elementFactory, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _albumValidator        = albumValidator;
     _elementFactory        = elementFactory;
     _formHelperService     = formHelperService;
 }
コード例 #7
0
 public CodeSnippetAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IDataAnnotationsService dataAnnotationsService, IElementFactory elementFactory, IFormHelperService formHelperService)
 {
     _authenticationService  = authenticationService;
     _authorizationService   = authorizationService;
     _dataAnnotationsService = dataAnnotationsService;
     _elementFactory         = elementFactory;
     _formHelperService      = formHelperService;
 }
コード例 #8
0
 public HtmlAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IHtmlUrlService htmlUrlService, IElementFactory elementFactory, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService = authorizationService;
     _htmlUrlService = htmlUrlService;
     _elementFactory = elementFactory;
     _formHelperService = formHelperService;
 }
コード例 #9
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Retrieve logged on user details.</param>
 /// <param name="authorizationService">Authorization service.</param>
 /// <param name="formHelperService">Form helper.</param>
 /// <param name="stringService">Used to retrieve values from line in a CSV file.</param>
 /// <param name="tableRepository">Table repository.</param>
 public TableService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IFormHelperService formHelperService, IStringService stringService, ITableRepository tableRepository)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _formHelperService     = formHelperService;
     _stringService         = stringService;
     _tableRepository       = tableRepository;
 }
コード例 #10
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;
 }
コード例 #11
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;
 }
コード例 #12
0
 public PageListAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IDataAnnotationsService dataAnnotationsService, IElementFactory elementFactory, IFormHelperService formHelperService, IPageService pageService)
 {
     _authenticationService  = authenticationService;
     _authorizationService   = authorizationService;
     _dataAnnotationsService = dataAnnotationsService;
     _elementFactory         = elementFactory;
     _formHelperService      = formHelperService;
     _pageService            = pageService;
 }
コード例 #13
0
 public PageZoneFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IElementService elementService, IFormHelperService formHelperService, IMasterPageService masterPageService, Core.Pages.IPageService pageService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _elementService        = elementService;
     _formHelperService     = formHelperService;
     _masterPageService     = masterPageService;
     _pageService           = pageService;
 }
コード例 #14
0
 public CarouselAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, ICarouselValidator carouselValidator, IElementFactory elementFactory, IFormHelperService formHelperService, IPageService pageService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _carouselValidator     = carouselValidator;
     _elementFactory        = elementFactory;
     _formHelperService     = formHelperService;
     _pageService           = pageService;
 }
コード例 #15
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="administrationPortalService">Provides generic administration features.</param>
 /// <param name="formHelperService">Form helper service.</param>
 /// <param name="gridService">Used to construct grid view models.</param>
 /// <param name="webConverter">Converts between web business and web view models.</param>
 /// <param name="webService">Provides access to websites.</param>
 /// <param name="webHelperService">Access to low level web components.</param>
 public WebPortalService(IAdministrationPortalService administrationPortalService, IFormHelperService formHelperService, IGridService gridService, IModelConverter <Web, WebViewModel> webConverter, IWebService webService, IWebHelperService webHelperService)
 {
     _administrationPortalService = administrationPortalService;
     _formHelperService           = formHelperService;
     _gridService      = gridService;
     _webConverter     = webConverter;
     _webService       = webService;
     _webHelperService = webHelperService;
 }
コード例 #16
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication services.</param>
 /// <param name="authorizationService">Authorization service.</param>
 /// <param name="dataAnnotationsService">Retrieves information from data annotations.</param>
 /// <param name="elementService">Used to enumerate elements.</param>
 /// <param name="formHelperService">Provides form helper utilities.</param>
 /// <param name="masterPageService">For administration of master pages.</param>
 public MasterPageZoneFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IDataAnnotationsService dataAnnotationsService, IElementService elementService, IFormHelperService formHelperService, IMasterPageService masterPageService)
 {
     _authenticationService = authenticationService;
     _authorizationService = authorizationService;
     _dataAnnotationsService = dataAnnotationsService;
     _elementService = elementService;
     _formHelperService = formHelperService;
     _masterPageService = masterPageService;
 }
コード例 #17
0
 public ForumFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IDataAnnotationsService dataAnnotationsService, IFormHelperService formHelperService, IForumService forumService, IForumUrlService forumUrlService, IPageService pageService)
 {
     _authenticationService  = authenticationService;
     _authorizationService   = authorizationService;
     _dataAnnotationsService = dataAnnotationsService;
     _formHelperService      = formHelperService;
     _forumService           = forumService;
     _forumUrlService        = forumUrlService;
     _pageService            = pageService;
 }
コード例 #18
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication related code.</param>
 /// <param name="authenticationValidator">Provides access to authentication validation code.</param>
 /// <param name="formHelperService">Provides access to form helper methods for tasks such as creating form results.</param>
 public ConfirmUserSetPasswordFormService(IAuthenticationService authenticationService, IAuthenticationValidator authenticationValidator, IFormHelperService formHelperService)
 {
     _authenticationService   = authenticationService;
     _authenticationValidator = authenticationValidator;
     _formHelperService       = formHelperService;
 }
コード例 #19
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication related code.</param>
 /// <param name="formHelperService">Provides access to form helper methods for tasks such as creating form results.</param>
 public CreateUserFormService(IAuthenticationService authenticationService, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _formHelperService     = formHelperService;
 }
コード例 #20
0
 /// <summary>
 /// Constructor sets dependent components.
 /// </summary>
 /// <param name="authenticationService">Provides access to authentication related code.</param>
 /// <param name="formHelperService">Provides access to form helper methods for tasks such as creating form results.</param>
 public ChangePasswordFormService(IAuthenticationService authenticationService, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _formHelperService     = formHelperService;
 }