コード例 #1
0
        private static IEnumerable <AutoExpandedCustomer> CreateAutoExpandedCustomers()
        {
            AutoExpandedCustomer customer = new AutoExpandedCustomer();

            customer.Id = 1;

            customer.Category = new PremiumEnableQueryCategory
            {
                Id           = 1234,
                PremiumLevel = 5678,
            };

            yield return(customer);
        }
コード例 #2
0
        private static IEnumerable<AutoExpandedCustomer> CreateAutoExpandedCustomers()
        {
            AutoExpandedCustomer customer = new AutoExpandedCustomer();

            customer.Id = 1;

            customer.Category = new PremiumEnableQueryCategory
            {
                Id = 1234,
                PremiumLevel = 5678,
            };

            yield return customer;
        }