/// <summary>
 /// Checks to see if the named store already exists
 /// </summary>
 /// <param name="storeName">store to check</param>
 /// <returns>true if store exists, false if not.</returns>
 public bool DoesStoreExist(string storeName)
 {
     try
     {
         return(_serverCore.DoesStoreExist(storeName));
     }
     catch (Exception ex)
     {
         Logging.LogError(BrightstarEventId.ServerCoreException, "Error checking if store exists. Store {0}", storeName);
         throw new BrightstarClientException("Error checking if store exists store " + storeName + ". " + ex.Message, ex);
     }
 }
 /// <summary>
 /// Checks for the existence of a store with the given name.
 /// </summary>
 /// <param name="storeName">Name of the store </param>
 /// <returns>True if the store exists, False if not.</returns>
 public bool DoesStoreExist(string storeName)
 {
     return(_serverCore.DoesStoreExist(storeName));
 }