@model HeuristicLab.Services.Optimization.Web.Models.OrderModel @using HeuristicLab.Services.Optimization.Web.Helpers
Following items will be purchased
Product name: | Price per Unit: | Quantity: | Total Price: |
---|---|---|---|
@Model.Products[product].Name | @Model.Products[product].Price Euro | @Model.ProductQuantities[product] | @Model.ProductSum(product) Euro |
Resulting in total costs of @Model.TotalSum() Euro.
@if (Model.User.PaymentInformation == null || Model.User.PaymentInformation.Count == 0) {@Html.Label("PaymentInformationId", string.Format("{0} ({1})", pi.PaymentMethod, pi.CardNumber)) @Html.RadioButton("PaymentInformationId", pi.PaymentInformationId)
}@Html.LabelFor(m => m.User.ContactInformation.FirstName) | @Model.User.ContactInformation.FirstName |
@Html.LabelFor(m => m.User.ContactInformation.LastName) | @Model.User.ContactInformation.LastName |
@Html.LabelFor(m => m.User.ContactInformation.FirstName) | @Model.User.ContactInformation.FirstName |
@Html.LabelFor(m => m.User.ContactInformation.Email) | @Model.User.ContactInformation.Email |
@Html.LabelFor(m => m.User.ContactInformation.OrganizationName) | @Model.User.ContactInformation.OrganizationName |
@Html.LabelFor(m => m.User.ContactInformation.Street) | @Model.User.ContactInformation.Street |
@Html.LabelFor(m => m.User.ContactInformation.PostalCode) | @Model.User.ContactInformation.PostalCode |
@Html.LabelFor(m => m.User.ContactInformation.City) | @Model.User.ContactInformation.City |
@Html.LabelFor(m => m.User.ContactInformation.State) | @Model.User.ContactInformation.State |
@Html.RadioButtonForEnum(m => m.BillingPeriod)
@Html.RadioButtonForEnum(m => m.BillingType)
} }