@page @using Packt.Shared @model Northwind.Web.Pages.SuppliersModel @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

Suppliers

@if (Model.Suppliers is not null) { @foreach(Supplier s in Model.Suppliers) { } }
Company Name Country Phone
@s.CompanyName @s.Country @s.Phone

Enter details for a new supplier: