@*@model IEnumerable*@ @using ParcelWeb.Core @{ ViewBag.Title = "Domestic Delivery Rates"; }

Domestic Rates

@Html.Label("Package", htmlAttributes: new { @class = "" }) @Html.DropDownList("SPackageId", ViewBag.Packages as SelectList, "--Select Package--", new { @class = "custom-select block filterdata" }) @Html.ValidationMessage("SPackageId", "", new { @class = "text-danger" })
@Html.Label("Delivery Service", htmlAttributes: new { @class = "" }) @Html.DropDownList("SServiceId", ViewBag.DeliveryServices as SelectList, "--Select Delivery Service--", new { @class = "custom-select block filterdata" }) @Html.ValidationMessage("SServiceId", "", new { @class = "text-danger" })
@Html.Label("Sub Service", htmlAttributes: new { @class = "" }) @Html.DropDownList("SSubServiceId", ViewBag.DeliverySubServices as SelectList, "--Select SubService--", new { @class = "custom-select block filterdata" }) @Html.ValidationMessage("SSubServiceId", "", new { @class = "text-danger" })

@* *@ @* @foreach (var item in Model) { } *@
Package Delivery Service Sub ServiceRate YearWeight Rate Rate Type RM RMU COD Charges COD Percent Action
@item.PackageId @item.ServiceId @item.SubServiceId @item.RateYear @item.Weight @item.Rate @item.RateType @item.RateMultiplier @item.CODCharges @item.CODPercent Edit
@*-------------New modal---------------*@ @*-------------Edit modal---------------*@ @section Scripts { @Scripts.Render("~/bundles/jqueryval") @Html.Raw(TempData["msg"]) }