File: Controllers\HtmlGeneration_OrderController.cs | Web Access |
Project: src\src\Mvc\test\WebSites\HtmlGenerationWebSite\HtmlGenerationWebSite.csproj (HtmlGenerationWebSite) |
// 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_OrderController : Controller { public IActionResult Submit(Order order) { throw new NotImplementedException(); } } |