private const int SizeSalt = 16; // 256 bit salt public AuthenticationConfigurationService(IEmailConfigurationService emailConfigurationService, IStringService stringService, IAuthenticationUrlService authenticationUrlService, IWebHelperService webHelperService) { _authenticationUrlService = authenticationUrlService; _emailConfigurationService = emailConfigurationService; _stringService = stringService; _webHelperService = webHelperService; }
public AuthenticationFormService(IAuthenticationService authenticationService, IAuthenticationUrlService authenticationUrlService, IFormHelperService formHelperService, IWebService webService) { _authenticationService = authenticationService; _authenticationUrlService = authenticationUrlService; _formHelperService = formHelperService; _webService = webService; }