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 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 DSACore/Controllers/CommandsController.cs (limited to 'DSACore/Controllers/CommandsController.cs') 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) + { + } + } +} -- cgit v1.2.3-70-g09d2