mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
13 lines
172 B
Plaintext
13 lines
172 B
Plaintext
@using HelperMethods.Models
|
|
@model IEnumerable<Person>
|
|
|
|
@foreach (Person p in Model)
|
|
{
|
|
<tr>
|
|
<td>@p.FirstName</td>
|
|
<td>@p.LastName</td>
|
|
<td>@p.Role</td>
|
|
</tr>
|
|
}
|
|
|