using System; using System.Collections.Generic; using System.Web.Http; using WebAPiUtils_test.DBO; namespace WebAPiUtils_test.Controllers { public class ValuesController : ApiController { // GET api/values public IEnumerable Get() { throw new Exception("Something went wrong..."); } // GET api/values/5 public string Get(int id) { return "value"; } // POST api/values public void Post([FromBody]MyDbo value) { } // PUT api/values/5 public void Put(int id, [FromBody]string value) { } // DELETE api/values/5 public void Delete(int id) { } } }