public UserService(IUsersUnitOfWork usersUnitOfWork, IJwtUtils jwtUtils, IOptions <AppSettings> appSettings, IMapper mapper, IDateTimeProvider dateTimeProvider) { _usersUnitOfWork = usersUnitOfWork; _jwtUtils = jwtUtils; _appSettings = appSettings.Value; _mapper = mapper; _dateTimeProvider = dateTimeProvider; }
public UsersService(IUsersUnitOfWork userUnitOfWork, IMapper mapper) { _userUnitOfWork = userUnitOfWork; _mapper = mapper; }