aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-02-25 18:42:32 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-02-25 18:42:32 +0200
commitcae62907383a8b9be03bf3e0b8f9c8b26427ee21 (patch)
treeaff9ad15e4c52edd43e310219b8273f8cef5ebcd /Software/Visual_Studio/Web/Tango.MachineService/Controllers
parente112866a2cf44ddeb5b40e8ffc84614ecfe6abdf (diff)
downloadTango-cae62907383a8b9be03bf3e0b8f9c8b26427ee21.tar.gz
Tango-cae62907383a8b9be03bf3e0b8f9c8b26427ee21.zip
Started working on machine service, download controller.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs
new file mode 100644
index 000000000..126b794ea
--- /dev/null
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Mvc;
+
+namespace Tango.MachineService.Controllers
+{
+ public class DownloadsController : Controller
+ {
+ // GET: Downloads
+ public ActionResult Index()
+ {
+ return View();
+ }
+ }
+} \ No newline at end of file