@model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceViewModel @{ ViewBag.Title = "Delete Vehicle Service"; } @Html.Partial("_StatusMessage")

@ViewBag.Title

Are you sure you wish to delete this service?
@Html.DisplayForModel() @using (Html.BeginForm("Delete", "VehicleService", FormMethod.Post, new { @class = "form-horizontal" })) {
@Html.ActionLink("Cancel", "Details", new { id = Model.VehicleServiceId }, new { @class = "btn" })
}