예제 #1
0
        public IHttpActionResult AddWAtchHistory()
        {
            var httpBody   = ControllerContext.Request.Content.ReadAsStringAsync().Result;
            var dictionary = JsonConvert.DeserializeObject <Dictionary <string, object> >(httpBody);

            return(Ok(service.AddWAtchHistory(dictionary)));
        }