From 7a88b3c43abbda4f5fd3fc0e0aaab4cb494941ec Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Wed, 8 Mar 2023 19:45:44 +0200 Subject: [PATCH] TokenService: removed unused property --- src/Tuitio.Application/Services/TokenService.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Tuitio.Application/Services/TokenService.cs b/src/Tuitio.Application/Services/TokenService.cs index 2897ef8..57ca5a8 100644 --- a/src/Tuitio.Application/Services/TokenService.cs +++ b/src/Tuitio.Application/Services/TokenService.cs @@ -6,7 +6,6 @@ using System; using System.Text; using System.Text.RegularExpressions; using Tuitio.Application.Services.Abstractions; -using Tuitio.Application.Stores; using Tuitio.Domain.Abstractions; using Tuitio.Domain.Entities; using Tuitio.Domain.Models; @@ -17,13 +16,11 @@ namespace Tuitio.Application.Services { private readonly IMapper _mapper; private readonly IConfigProvider _configProvider; - private readonly ITokenStore _tokenStore; - public TokenService(IMapper mapper, IConfigProvider configProvider, ITokenStore tokenStore) + public TokenService(IMapper mapper, IConfigProvider configProvider) { _mapper=mapper; _configProvider=configProvider; - _tokenStore=tokenStore; } public Token GenerateToken(AppUser user)