private void CreateStorageEntries(IStorageTable storageTable)
        {
            StorageCreationCommandDictionary commands = storageTable.GetStorageCreationCommands();

            foreach (StorageCreationCommand cmd in commands.Values)
            {
                cmd.Execute();
            }
        }
 private void CreateStorageEntries(IStorageTable storageTable)
 {
     StorageCreationCommandDictionary commands = storageTable.GetStorageCreationCommands();
     foreach (StorageCreationCommand cmd in commands.Values)
     {
         cmd.Execute();
     }
 }