From cae62907383a8b9be03bf3e0b8f9c8b26427ee21 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 25 Feb 2019 18:42:32 +0200 Subject: Started working on machine service, download controller. --- .../Controllers/DownloadsController.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers') 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 -- cgit v1.3.1