public RpcClientWrapper(IClient client)
 {
     Client = client ?? throw new ArgumentNullException(nameof(client));
 }
 public void SwitchClient(IClient client)
 {
     Client = client;
 }