2023-10-22 12:15:29 +11:00
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using MvcMusicStore.Data;
|
2021-06-22 12:00:18 +10:00
|
|
|
|
|
|
|
|
|
namespace MvcMusicStore.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : Controller
|
|
|
|
|
{
|
2023-10-22 12:15:29 +11:00
|
|
|
|
public ActionResult Index()
|
2021-06-22 12:00:18 +10:00
|
|
|
|
{
|
2023-10-22 12:15:29 +11:00
|
|
|
|
return View();
|
2021-06-22 12:00:18 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult About()
|
|
|
|
|
{
|
|
|
|
|
ViewBag.Message = "Your application description page.";
|
|
|
|
|
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ActionResult Contact()
|
|
|
|
|
{
|
|
|
|
|
ViewBag.Message = "Your contact page.";
|
|
|
|
|
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2023-10-22 12:15:29 +11:00
|
|
|
|
|
|
|
|
|
//public ActionResult Search(string q)
|
|
|
|
|
//{
|
|
|
|
|
// var albums =
|
|
|
|
|
//}
|
2021-06-22 12:00:18 +10:00
|
|
|
|
}
|
|
|
|
|
}
|