/// <summary>
 /// Verifies the exists.
 /// </summary>
 private void VerifyExists()
 {
     if (!Shops.Exists(_databasePath, _shopsName, out _errOut))
     {
         bool value = Shops.Add(_databasePath, _shopsName, out _errOut);
     }
 }
        public void ExistsTest()
        {
            VerifyExists();
            bool value = Shops.Exists(_databasePath, _shopsName, out _errOut);

            General.HasTrueValue(value, _errOut);
        }
 /// <summary>
 /// Verifies the doesnt exist.
 /// </summary>
 private void VerifyDoesntExist()
 {
     if (Shops.Exists(_databasePath, _shopsName, out _errOut))
     {
         long id    = Shops.GetId(_databasePath, _shopsName, out _errOut);
         bool value = GlobalList.Delete(_databasePath, id, out _errOut);
     }
 }