Exemplo n.º 1
0
 public UserController(IUserService userService, IAuthenticationService auth, IPrincipal principal, IConfigService configService, IThirdPartyUserService thirdPartyUserService)
 {
     _userService           = userService;
     _auth                  = auth;
     _principal             = principal;
     _configService         = configService;
     _thirdPartyUserService = thirdPartyUserService;
 }
 public ThirdPartyUserController(IAuthenticationService authService, ICryptographyService cryptographyService, IThirdPartyUserService thirdPartyService, IUserService userService)
 {
     _authenticationService = authService;
     _cryptographyService   = cryptographyService;
     //_dataProvider = dataProvider;
     //_configService = configService;
     _thirdPartyService = thirdPartyService;
     _userService       = userService;
 }