public bool AddContentToDirectory(KomodoCafeContent content)
        {
            int startingCount = _contentDirectory.Count;

            _contentDirectory.Add(content);
            bool wasAdded = (_contentDirectory.Count > startingCount) ? true : false;

            return(wasAdded);
        }
        public bool DeleteExistingContent(KomodoCafeContent komodoCafeContent)
        {
            bool deleteResult = _contentDirectory.Remove(komodoCafeContent);

            return(deleteResult);
        }