Created Solutions for:

Mobile
Mobile.Android
Web (MVC.NET)
Web.Tests
WinForms
This commit is contained in:
Nate VanBuskirk
2019-11-10 18:05:36 -06:00
parent d2ebc0fe2d
commit 2ac49cb810
70 changed files with 37815 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
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();
}
}
}