public bool AddContentToDirectory(ClaimClass claimContent)
        {
            int startingCount = _contentDirectory.Count;

            _contentDirectory.Add(claimContent);

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

            return(wasAdded);
        }
        public bool DeleteClaim(ClaimClass currentItems)
        {
            bool deleteOutcome = _contentDirectory.Remove(currentItems);

            return(deleteOutcome);
        }