コード例 #1
0
 public HttpResponseMessage EditRestaurant(int id, Restaurant rest)
 {
     _repo.EditRestaurant(id, rest);
     return(Request.CreateResponse(HttpStatusCode.Accepted));
 }