예제 #1
0
 public RegisterUserCommandHandler(UserManager <ApplicationUser> userManager,
                                   IApplicationUserDxo applicationUserDxo,
                                   IJwtService jwtService,
                                   ITokenDxo tokenDxo)
 {
     _userManager        = userManager;
     _applicationUserDxo = applicationUserDxo;
     _jwtService         = jwtService;
     _tokenDxo           = tokenDxo;
 }