Example #1
0
 public HashingUserService(IUserService service, ILoginAuthenticator authenticator) : base(service)
 {
     Authenticator = authenticator;
 }
Example #2
0
 public UserController(IUserService userService, ILoginAuthenticator authenticatorService)
 {
     UserService          = userService;
     AuthenticatorService = authenticatorService;
 }