Начало отчета

This commit is contained in:
Володя 2023-05-18 11:56:00 +03:00
parent c96decd748
commit 9af94d1e2c
3 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,7 @@ using SchoolAgainStudyDataBaseImplements.Models;
using SchoolAgainStudyDataModels.Models; using SchoolAgainStudyDataModels.Models;
using StudentWebClient.Models; using StudentWebClient.Models;
using System.Diagnostics; using System.Diagnostics;
using System.IO;
namespace StudentWebClient.Controllers namespace StudentWebClient.Controllers
{ {
@ -417,5 +418,10 @@ namespace StudentWebClient.Controllers
}); });
Response.Redirect("/Home/Products"); Response.Redirect("/Home/Products");
} }
public IActionResult Reports()
{
return View();
}
} }
} }

View File

@ -0,0 +1 @@


View File

@ -41,6 +41,9 @@
<li class="nav-item"> <li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Products">Изделия</a> <a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Products">Изделия</a>
</li> </li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Reports">Отчеты</a>
</li>
</ul> </ul>
</div> </div>