public void SaveToSoup(List <Model.Models.CategoryContent> newCategoryContents)
 {
     if (newCategoryContents == null)
     {
         return;
     }
     foreach (var newCategoryContent in newCategoryContents)
     {
         _store.Upsert(SoupName, JObject.Parse(CustomPrefixJsonConvert.SerializeObject(newCategoryContent)));
     }
 }