Пример #1
0
        public HttpResponseMessage DeleteProgress(int id)
        {
            ProgressService progSvc = new ProgressService();

            progSvc.DeleteProgress(id);
            return(Request.CreateResponse(HttpStatusCode.OK, id));
        }