public IndexModel(ISourceCodeManager sourceCodeManager, UserManager <UWPHelperUser> userManager, IAuthorizationService authorizationService, IDetectManager detectManager) { _sourceCodeManager = sourceCodeManager; _userManager = userManager; _authorizationService = authorizationService; _detectManager = detectManager; }
public EditModel(IdentityContext identityContext, UserManager <UWPHelperUser> userManager, IAuthorizationService authorizationService, IDetectManager detectManager, ISourceCodeManager sourceCodeManager) { _identityContext = identityContext; _userManager = userManager; _authorizationService = authorizationService; _detectManager = detectManager; _sourceCodeManager = sourceCodeManager; }
public SearchCodePageModel(UserManager <UWPHelperUser> userManager, SignInManager <UWPHelperUser> signInManager, IDetectManager detectManager, IdentityContext identityContext, IAuthorizationService authorizationService, ISourceCodeManager sourceCodeManager) { _userManager = userManager; _signInManager = signInManager; _identityContext = identityContext; _authorizationService = authorizationService; _sourceCodeManager = sourceCodeManager; _detectManager = detectManager; }
public PrivacyModel(IDetectManager detectManager) { _detectManager = _detectManager; }
public ResultModel(UserManager <UWPHelperUser> userManager, SignInManager <UWPHelperUser> signInManager, IDetectManager detectManager, IdentityContext identityContext, IAuthorizationService authorizationService, ISourceCodeManager sourceCodeManager) : base(userManager, signInManager, detectManager, identityContext, authorizationService, sourceCodeManager) { }