Example #1
0
 public IndexModel(ISourceCodeManager sourceCodeManager, UserManager <UWPHelperUser> userManager,
                   IAuthorizationService authorizationService, IDetectManager detectManager)
 {
     _sourceCodeManager    = sourceCodeManager;
     _userManager          = userManager;
     _authorizationService = authorizationService;
     _detectManager        = detectManager;
 }
Example #2
0
 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;
 }
Example #4
0
 public PrivacyModel(IDetectManager detectManager)
 {
     _detectManager = _detectManager;
 }
Example #5
0
 public ResultModel(UserManager <UWPHelperUser> userManager, SignInManager <UWPHelperUser> signInManager, IDetectManager detectManager,
                    IdentityContext identityContext, IAuthorizationService authorizationService, ISourceCodeManager sourceCodeManager)
     : base(userManager, signInManager, detectManager, identityContext, authorizationService, sourceCodeManager)
 {
 }