From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../Controllers/ValuesController.cs | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService.Gateway/Controllers/ValuesController.cs (limited to 'Software/Visual_Studio/Web/Tango.MachineService.Gateway/Controllers/ValuesController.cs') diff --git a/Software/Visual_Studio/Web/Tango.MachineService.Gateway/Controllers/ValuesController.cs b/Software/Visual_Studio/Web/Tango.MachineService.Gateway/Controllers/ValuesController.cs deleted file mode 100644 index 2c742706e..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService.Gateway/Controllers/ValuesController.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Web.Http; - -namespace Tango.MachineService.Gateway.Controllers -{ - public class ValuesController : ApiController - { - // GET api/values - public IEnumerable Get() - { - return new string[] { "value1", "value2" }; - } - - // GET api/values/5 - public string Get(int id) - { - return "value"; - } - - // POST api/values - public void Post([FromBody]string value) - { - } - - // PUT api/values/5 - public void Put(int id, [FromBody]string value) - { - } - - // DELETE api/values/5 - public void Delete(int id) - { - } - } -} -- cgit v1.3.1