// JsonServer
 internal static void EnsureCollectionExist(JsonServerConnection client, string collection)
 {
     if (!client.ContainsCollection(collection))
     {
         client.CreateCollection(collection);
     }
 }
 // JsonServer
 private static void DeleteCollection(JsonServerConnection client, string collectionName)
 {
     client.DeleteCollection(collectionName);
 }