Agliullov D. A. Lab Work 5 Hard #16

Closed
d.agliullov wants to merge 49 commits from Lab5_Hard into Lab4_Hard
Showing only changes of commit 7fd6c6fb52 - Show all commits

View File

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace ConfectioneryRestApi.Controllers
{
public class ShopController : Controller
{
public IActionResult Index()
{
return View();
}
}
}