コード例 #1
0
        public IHttpActionResult RemoveWatch(int?id)
        {
            var isdel = _watchRepository.RemoveWatch(id);

            if (isdel == true)
            {
                return(Ok(isdel));
            }
            return(BadRequest());
        }