19 lines
357 B
Plaintext
19 lines
357 B
Plaintext
@model Vidly.Models.Customer
|
|
@{
|
|
ViewBag.Title = "Customer";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<h2>Customer</h2>
|
|
|
|
<h1>@Model.Name - @Model.Id</h1>
|
|
|
|
<ul >
|
|
<li>Membership Type: @Model.MembershipType.Name</li>
|
|
@if (Model.BirthDate != null)
|
|
{
|
|
<li>Birthdate : @Model.BirthDate.Value.ToShortDateString()</li>
|
|
}
|
|
</ul>
|
|
|