11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
@model Vidly.Models.Customer
|
|
@{
|
|
ViewBag.Title = "Customer";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<h2>Customer</h2>
|
|
|
|
<h1>@Model.Name - @Model.Id</h1>
|
|
|