добавила примеры и создала вьюшки для препаратов, процедур и начала рецепты

This commit is contained in:
Елена Бакальская 2024-04-30 16:21:11 +04:00
parent ad4377ffc7
commit 53365b6009
4 changed files with 108 additions and 8 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
@ -6,6 +6,13 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PolyclinicBusinessLogic\PolyclinicBusinessLogic.csproj" />
<ProjectReference Include="..\PolyclinicContracts\PolyclinicContracts.csproj" />

View File

@ -32,7 +32,15 @@
</tr>
</thead>
<tbody>
<td>
1
</td>
<td>
Фенибут
</td>
<td>
При особом неврозе употребляйте каждый день и спина не будет болеть
</td>
</tbody>
</table>
}

View File

@ -1,5 +1,47 @@
@*
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
*@
@using PolyclinicContracts.ViewModels
@model List<ProcedureViewModel>
@{
ViewData["Title"] = "Procedures";
}
<div class="text-center">
<h1 class="display-4">Процедуры</h1>
</div>
<div class="text-center">
@{
// if (Model == null)
// {
// <h3 class="display-4">Авторизируйтесь</h3>
// return;
// }
<p>
<a asp-action="CreateProcedure">Создать процедуру</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Название процедуры
</th>
<th>
Комментарий
</th>
</tr>
</thead>
<tbody>
<td>
1
</td>
<td>
Массаж пяточек
</td>
<td>
ммммммм
</td>
</tbody>
</table>
}
</div>

View File

@ -1,5 +1,48 @@
@*
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
*@
@using PolyclinicContracts.ViewModels
@model List<RecipeViewModel>
@{
ViewData["Title"] = "Recipes";
}
<div class="text-center">
<h1 class="display-4">Рецепты</h1>
</div>
<div class="text-center">
@{
// if (Model == null)
// {
// <h3 class="display-4">Авторизируйтесь</h3>
// return;
// }
<p>
<a asp-action="CreateRecipe">Создать рецепт</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Количество процедур
</th>
<th>
Комментарий
</th>
</tr>
</thead>
<tbody>
<td>
1
</td>
<td>
4
</td>
<td>
Вот столько процедур делайте
</td>
</tbody>
</table>
}
</div>