aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2019-04-22 11:54:47 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2019-04-22 11:54:47 +0300
commitd33c03e0789b58e8155fb15a13df5fb23014145b (patch)
treecf87e8f68f74261e194915327c4329b0bdc1258e /Software/Visual_Studio/TCC/Tango.TCC.Service/Controllers/ValuesController.cs
parentf937e17452d6e89b67a675cd7139d84cbd7b0ee3 (diff)
downloadTango-d33c03e0789b58e8155fb15a13df5fb23014145b.tar.gz
Tango-d33c03e0789b58e8155fb15a13df5fb23014145b.zip
Implemented Angular Frontend on TCC service.
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.cs39
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)
- {
- }
- }
-}