コード例 #1
0
 public TokenIncrementsController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenIncrementService tokenIncrementService
     ) : base(infoService, hostService)
 {
     _tokenService          = tokenService;
     _tokenIncrementService = tokenIncrementService;
 }
コード例 #2
0
 public LyciumTokenController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenNotify tokenNotify
     ) : base(infoService, hostService)
 {
     _tokenService = tokenService;
     _tokenNotify  = tokenNotify;
 }