public static DictionaryContainerSample GetSampleInstance()
        {
            var container = new DictionaryContainerSample
            {
                Items = DictionarySample.GetSampleInstance()
            };

            return(container);
        }
        public static DictionarySample GetSampleInstance()
        {
            var dictionary = new DictionarySample
            {
                { "key1", new Guid(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11).ToString() },
                { "key2", 1234.ToString() }
            };

            return(dictionary);
        }