// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using HtmlGenerationWebSite.Models;
using Microsoft.AspNetCore.Mvc;
namespace HtmlGenerationWebSite.Controllers;
public class HtmlGeneration_ProductController : Controller
{
public IActionResult Index()
{
throw new NotImplementedException();
}
public IActionResult Submit(Product product)
{
throw new NotImplementedException();
}
public IActionResult List()
{
throw new NotImplementedException();
}
}
|