From 09b0c5be9e23247411da850497b9cc6519d8f155 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Thu, 27 Sep 2018 19:42:06 +0200 Subject: testing --- WebApplication1/Controllers/ValuesController.cs | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 WebApplication1/Controllers/ValuesController.cs (limited to 'WebApplication1/Controllers/ValuesController.cs') diff --git a/WebApplication1/Controllers/ValuesController.cs b/WebApplication1/Controllers/ValuesController.cs new file mode 100644 index 0000000..ac835f3 --- /dev/null +++ b/WebApplication1/Controllers/ValuesController.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace WebApplication1.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ValuesController : ControllerBase + { + // GET api/values + [HttpGet] + public ActionResult> Get() + { + return new string[] { "value1", "value2" }; + } + + // GET api/values/5 + [HttpGet("{id}")] + public ActionResult Get(int id) + { + return "value"; + } + + // POST api/values + [HttpPost] + public void Post([FromBody] string value) + { + } + + // PUT api/values/5 + [HttpPut("{id}")] + public void Put(int id, [FromBody] string value) + { + } + + // DELETE api/values/5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} -- cgit v1.2.3-54-g00ecf