/// <summary>
 /// Constructor that reuses already available WSWrapper() for current thread of processing
 /// </summary>
 public WSCall(WSWrapper wsWrapper)
 {
     this.wsWrapper = wsWrapper;
 }
 /// <summary>
 /// Constructor creating new WSWrapper() - actual interface to Blackboard webservices API.
 /// </summary>
 public WSCall(String bbHostURL)
 {
     this.wsWrapper = new WSWrapper(bbHostURL);
 }