public PlaygroundClientTests()
 {
     _playgroundClient = new PlaygroundClient();
 }
 public TokenService(IPlaygroundClient playgroundClient)
 {
     _playgroundClient = playgroundClient;
 }
Exemple #3
0
 public ServerListRequestHandler(IPlaygroundClient playgroundClient)
 {
     _playgroundClient = playgroundClient;
 }
 public ServerService(IPlaygroundClient playgroundClient)
 {
     _playgroundClient = playgroundClient;
 }
 public TokenRequestHandler(IPlaygroundClient playgroundClient)
 {
     _playgroundClient = playgroundClient;
 }