+
+ @Html.ActionLink("Cancel", "Index", new { id = Model.VehicleId }, new { @class = "btn" })
+
+ }
+
\ No newline at end of file
diff --git a/Web/Views/ServiceReminder/Details.cshtml b/Web/Views/ServiceReminder/Details.cshtml
index fa77e42..2a18922 100644
--- a/Web/Views/ServiceReminder/Details.cshtml
+++ b/Web/Views/ServiceReminder/Details.cshtml
@@ -13,4 +13,5 @@
@Html.ActionLink("Edit", "Edit", new { id = Model.ServiceReminderId }, new { @class = "btn" })
+ @Html.ActionLink("Delete", "Delete", new { id = Model.ServiceReminderId }, new { @class = "btn" })
\ No newline at end of file
diff --git a/Web/Views/VehicleService/Delete.cshtml b/Web/Views/VehicleService/Delete.cshtml
new file mode 100644
index 0000000..c46386d
--- /dev/null
+++ b/Web/Views/VehicleService/Delete.cshtml
@@ -0,0 +1,24 @@
+@model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceViewModel
+
+@{
+ ViewBag.Title = "Delete Vehicle Service";
+}
+
+@Html.Partial("_StatusMessage")
+
+
+
+ @Html.ActionLink("Cancel", "Details", new { id = Model.VehicleServiceId }, new { @class = "btn" })
+
+ }
+
\ No newline at end of file
diff --git a/Web/Views/VehicleService/Details.cshtml b/Web/Views/VehicleService/Details.cshtml
index 53c49f9..6c56b56 100644
--- a/Web/Views/VehicleService/Details.cshtml
+++ b/Web/Views/VehicleService/Details.cshtml
@@ -13,5 +13,6 @@
@Html.ActionLink("Edit", "Edit", new { id = Model.VehicleServiceId }, new { @class = "btn" })
+ @Html.ActionLink("Delete", "Delete", new { id = Model.VehicleServiceId }, new { @class = "btn" })
@Html.ActionLink("Vehicle Details", "Details", "Vehicle", new { id = Model.VehicleId }, new{@class="btn"})
\ No newline at end of file
diff --git a/Web/Views/VehicleService/Index.cshtml b/Web/Views/VehicleService/Index.cshtml
index 75dfc0e..9487ecd 100644
--- a/Web/Views/VehicleService/Index.cshtml
+++ b/Web/Views/VehicleService/Index.cshtml
@@ -54,6 +54,7 @@
grid.Column(format:
@
@Html.ActionLink("Details", "Details", new { id = item.VehicleServiceId }, new { @class = "btn btn-mini" })
+ @Html.ActionLink("Delete", "Delete", new { id = item.VehicleServiceId }, new { @class = "btn btn-mini" })