예제 #1
0
 /// <inheritdoc />
 public bool Equals(ITokenOption other)
 {
     return(Name == other.Name && Equals(Value, other.Value) && Persistent == other.Persistent);
 }
예제 #2
0
 public AuthManager(IUserService userService, ITokenOption tokenOption)
 {
     _userService = userService;
     _tokenOption = tokenOption;
 }