1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-07 07:56:14 +00:00
LearningMVC/HelperMethods/Views/People/GetPeopleData.cshtml
2017-04-18 03:33:17 +09:00

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>
}