Skip to content

Instantly share code, notes, and snippets.

@ChouJustice
Last active March 8, 2022 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChouJustice/6bbe2556a295eeceea3666a590d99045 to your computer and use it in GitHub Desktop.
Save ChouJustice/6bbe2556a295eeceea3666a590d99045 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Mvc;
namespace WebCoreLab.Controllers
{
public class ProductController : Controller
{
public IActionResult List()
{
return View();
}
public IActionResult Detail()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment