diff options
Diffstat (limited to 'ApartmentManager/HousingWebApi-fix/Controllers/HomeController.cs')
-rw-r--r-- | ApartmentManager/HousingWebApi-fix/Controllers/HomeController.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ApartmentManager/HousingWebApi-fix/Controllers/HomeController.cs b/ApartmentManager/HousingWebApi-fix/Controllers/HomeController.cs new file mode 100644 index 0000000..fcd58bd --- /dev/null +++ b/ApartmentManager/HousingWebApi-fix/Controllers/HomeController.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace HousingWebApi.Controllers +{ + public class HomeController : Controller + { + public ActionResult Index() + { + ViewBag.Title = "Home Page"; + + return View(); + } + } +} |