29 lines
612 B
C#
29 lines
612 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Mvc;
|
|||
|
|
|||
|
namespace MvcMusicStore.Controllers
|
|||
|
{
|
|||
|
public class StoreController : Controller
|
|||
|
{
|
|||
|
// GET: Store
|
|||
|
public string Index()
|
|||
|
{
|
|||
|
return "Hello from Store.Index()";
|
|||
|
}
|
|||
|
//
|
|||
|
// GET: /Store/Browse
|
|||
|
public string Browse()
|
|||
|
{
|
|||
|
return "Hello from Store.Browse()";
|
|||
|
}
|
|||
|
//
|
|||
|
// GET: /Store/Details
|
|||
|
public string Details()
|
|||
|
{
|
|||
|
return "Hello from Store.Details()";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|