/// <summary>
 /// Closes the existing connection to the service
 /// </summary>
 public static void CloseClient()
 {
     if (clientInstance != null)
     {
         clientInstance.Close();
     }
 }