David Hartman 31437b9492 Web api dev (#163)
* initial commit

* removed old files

* initial commit
2017-04-02 11:11:35 +03:00

19 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace securecall.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}