Esempio n. 1
0
        public IHttpActionResult SaveWatchList([FromBody] WatchListDTO watchList)
        {
            bool result = false;

            if (watchList != null)
            {
                WatchlistService.SaveWatchList(watchList);
                result = true;
            }
            return(Json(result));
        }