From 92e8bb7523c775014ccf68355e3f0178ebf4a61c Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Wed, 26 Sep 2018 19:18:41 +0200 Subject: implemented fudamental Web Api --- DSACore/Controllers/CommandsController.cs | 49 +++++++++++++++++++++++++++++++ DSACore/Controllers/ValuesController.cs | 45 ++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 DSACore/Controllers/CommandsController.cs create mode 100644 DSACore/Controllers/ValuesController.cs (limited to 'DSACore/Controllers') diff --git a/DSACore/Controllers/CommandsController.cs b/DSACore/Controllers/CommandsController.cs new file mode 100644 index 0000000..bda8fd0 --- /dev/null +++ b/DSACore/Controllers/CommandsController.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using DSACore.Models; +using Microsoft.AspNetCore.Mvc; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace DSACore.Controllers +{ + [Route("api/[controller]")] + public class CommandsController : Controller + { + // GET: api/ + [HttpGet] + public IEnumerable Get() + { + return new string[] { "value1", "value2" }; + } + + // GET api//5 + [HttpGet("{id}")] + public string Get(int id) + { + return "value"; + } + + // POST api//Felis + [HttpPost] + public string Post([FromBody]Command cmd) + { + return cmd.Name + " strichelt erfolgreich das Einhorn" + cmd.CmdText; + } + + + // PUT api//5 + [HttpPut("{id}")] + public void Put(int id, [FromBody]string value) + { + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/DSACore/Controllers/ValuesController.cs b/DSACore/Controllers/ValuesController.cs new file mode 100644 index 0000000..eb08898 --- /dev/null +++ b/DSACore/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 DSACore.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