コード例 #1
0
        //// DELETE: api/Authors/5
        //[ResponseType(typeof(Author))]
        public IHttpActionResult DeleteAuthor(int id)
        {
            _authorsService.Remove(id);


            return(Ok(1));
        }