Exemplo n.º 1
0
 public AccountController(LynexUserManager userManager, ISiteRepository siteRepository)
 {
     _userManager    = userManager;
     _siteRepository = siteRepository;
 }
Exemplo n.º 2
0
 public AccountController(LynexUserManager userManager, LynexSignInManager signInManager)
 {
     UserManager   = userManager;
     SignInManager = signInManager;
 }
Exemplo n.º 3
0
 public SwitchController(LynexUserManager userManager, IAuthenticationManager anthenticationManager, ISwitchService switchService)
 {
     _userManager           = userManager;
     _anthenticationManager = anthenticationManager;
     _switchService         = switchService;
 }
Exemplo n.º 4
0
 public WallController(LynexUserManager userManager, IAuthenticationManager anthenticationManager, IWallService wallService)
 {
     _userManager           = userManager;
     _anthenticationManager = anthenticationManager;
     _wallService           = wallService;
 }
Exemplo n.º 5
0
 public SiteController(LynexUserManager userManager, ISiteService siteService, IWallService wallService)
 {
     _userManager = userManager;
     _siteService = siteService;
     _wallService = wallService;
 }
 public AuthenticationController(LynexUserManager userManager, ISiteRepository siteRepository, IAuthenticationManager authenticationManager)
 {
     _userManager           = userManager;
     _siteRepository        = siteRepository;
     _authenticationManager = authenticationManager;
 }