public TokenIncrementsController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenIncrementService tokenIncrementService
     ) : base(infoService, hostService)
 {
     _tokenService          = tokenService;
     _tokenIncrementService = tokenIncrementService;
 }
 public LyciumTokenController(
     IContextInfoService infoService,
     IServerHostService hostService,
     IServerTokenService tokenService,
     ITokenNotify tokenNotify
     ) : base(infoService, hostService)
 {
     _tokenService = tokenService;
     _tokenNotify  = tokenNotify;
 }