diff options
Diffstat (limited to 'Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs')
| -rw-r--r-- | Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs b/Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs deleted file mode 100644 index 90f745eb3..000000000 --- a/Software/Visual_Studio/TCC/Tango.TCC.Service/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.TCC.Service.Controllers -{ - public class ValuesController : ApiController - { - // GET api/values - public IEnumerable<string> 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) - { - } - } -} |
