/// <summary>
        ///
        /// </summary>
        public static int DeleteKeyTags(
            string container,
            string id)
        {
            var count = DeleteKeyTagsStorage.Execute(
                container.ToUpper(),
                id.ToUpper());

            return(count);
        }
        /// <summary>
        ///
        /// </summary>
        public static int DeleteKey(
            string container,
            string id)
        {
            // delete key
            var count = DeleteKeyStorage.Execute(
                container,
                id);

            // delete all tags for a key
            count += DeleteKeyTagsStorage.Execute(
                container.ToUpper(),
                id.ToUpper());

            return(count);
        }