From d33c03e0789b58e8155fb15a13df5fb23014145b Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Mon, 22 Apr 2019 11:54:47 +0300 Subject: Implemented Angular Frontend on TCC service. --- .../Controllers/ValuesController.cs | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs (limited to 'Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs') 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 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