Files
simple-shop/Simple-Shop/Controllers/HomeController.cs
T
Nate VanBuskirk 2ac49cb810 Created Solutions for:
Mobile
Mobile.Android
Web (MVC.NET)
Web.Tests
WinForms
2019-11-10 18:05:36 -06:00

30 lines
508 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Simple_Shop.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult About()
{
ViewBag.Message = "Your application description page.";
return View();
}
public ActionResult Contact()
{
ViewBag.Message = "Your contact page.";
return View();
}
}
}