Add project files.

This commit is contained in:
2025-07-15 11:14:03 +03:30
parent 8b899ab2a9
commit a1fed6a7ba
142 changed files with 87038 additions and 0 deletions

View File

@ -0,0 +1,58 @@
@model test.Models.User
@{
ViewBag.Title = "Details";
}
<h2>Details</h2>
<div>
<h4>User</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.User_Name)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Name)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_LastName)
</dt>
<dd>
@Html.DisplayFor(model => model.User_LastName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_PhoneNumber)
</dt>
<dd>
@Html.DisplayFor(model => model.User_PhoneNumber)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_Password)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Password)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_Status)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Status)
</dd>
</dl>
</div>
<p>
@Html.ActionLink("Edit", "Edit", new { id = Model.User_ID }) |
@Html.ActionLink("Back to List", "Index")
</p>