Ejemplo n.º 1
0
 public HttpResponseMessage DeleteReader(int reader_id)
 {
     plibrarydbEntities db = new plibrarydbEntities();
     db.DeleteReader(reader_id);
     return new HttpResponseMessage(HttpStatusCode.OK);
 }