Idea of the project: if someone wants to order a project development, here you can send an application.
Imports VehicleMaintenance.Web.Controllers
Public Class HomeController
Inherits BaseController
Function Index() As ActionResult
Dim model As New HomeViewModel
model.Vehicles = VehicleService.GetVehiclesList()
Return View(model)
End Function
End Class