Vehicle Recall integrated into Vehicle Service

This commit is contained in:
2020-09-30 21:44:38 -04:00
parent 6f031c5cb6
commit 4b44128d62
18 changed files with 236 additions and 126 deletions
+9 -2
View File
@@ -1,5 +1,4 @@
@model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceViewModel
@{
ViewBag.Title = "Record Vehicle Service";
}
@@ -12,9 +11,17 @@
@Html.Partial("_ValidationSummary")
<fieldset>
<legend></legend>
<div class="control-group">
<div class="control-label">
<label>Vehicle ID</label>
</div>
<div class="controls">
<b>@Model.VehicleId</b>
</div>
</div>
@Html.EditorForModel()
<div class="form-actions">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</fieldset>
}
}