Dictionary<string, object> purchase = new Dictionary<string, object>();
Dictionary<string, object> product1 = new Dictionary<string, object>();
product1.Add("pg1", "상품카테고리(대)");
product1.Add("pnc", "상품코드");
product1.Add("pnAtr1", "상품속성#1");
product1.Add("amount", 10000);
Dictionary<string, object> product2 = new Dictionary<string, object>();
product2.Add("pg1", "상품카테고리(대)");
product2.Add("pnc", "상품코드");
product2.Add("pnAtr1", "상품속성#1");
product2.Add("amount", 10000);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product1);
productList.Add(product2);
purchase.Add("product", productList);
DOT.logPurchase(purchase);