@using Bookstore.Domain.Offers; @using Bookstore.Domain; @model Bookstore.Web.Areas.Admin.Models.Offers.OfferIndexViewModel @{ ViewData["Title"] = "Offers"; } @await Html.PartialAsync("_MessageBanner")
Customer | Book Name | Author | Genre | Condition | Price | Offer date | Status | |
---|---|---|---|---|---|---|---|---|
@offer.CustomerName | @offer.BookName | @offer.Author | @offer.Genre | @offer.Condition | @offer.OfferPrice.ToString("C") | @offer.OfferDate.ToShortDateString() | @offer.OfferStatus.GetDescription() |