// POST api/Insert
        public HttpResponseMessage Post(WebApiParams param)
        {
            // 結果表示するメッセージ
            string message = "";
            Dictionary <string, string> dic = new Dictionary <string, string>();

            // B層呼出し+都度コミット
            LayerB layerB = new LayerB();

            layerB.Insert(param);

            // 結果(正常系)
            message = param.Obj.ToString() + "件追加";
            dic.Add("Message", message);

            return(Request.CreateResponse(HttpStatusCode.OK, dic));
        }