public AuthorizationCodeHandler(IAuthorizationCodeGrantTypeValidator authorizationCodeGrantTypeValidator, IGrantedTokenHelper grantedTokenHelper, IEnumerable <ITokenProfile> tokenProfiles,
                                 IEnumerable <ITokenBuilder> tokenBuilders, IClientAuthenticationHelper clientAuthenticationHelper) : base(clientAuthenticationHelper)
 {
     _authorizationCodeGrantTypeValidator = authorizationCodeGrantTypeValidator;
     _grantedTokenHelper = grantedTokenHelper;
     _tokenProfiles      = tokenProfiles;
     _tokenBuilders      = tokenBuilders;
 }