public IHttpActionResult SaveWatchList([FromBody] WatchListDTO watchList) { bool result = false; if (watchList != null) { WatchlistService.SaveWatchList(watchList); result = true; } return(Json(result)); }