@model Bookstore.Web.ViewModel.Search.SearchDetailsViewModel
@if (Model == null) {

Book not found.

} else {

@Model.BookName


@if (string.IsNullOrEmpty(Model.Summary)) { } else { }
Title @Model.BookName
Author @Model.Author
Publisher @Model.PublisherName
Genre @Model.GenreName
Condition @Model.ConditionName
Price @Model.MinPrice.ToString("C")
Description No description found.
Description @Model.Summary)
}