public IActionResult Index_policja() { ListAllVehiclesVM vm = new ListAllVehiclesVM() { Pojazdy = _pojazdService.Get() }; return(View(vm)); }
public IActionResult Index_Policja_Wyszukaj(string vin) { ListAllVehiclesVM vm = new ListAllVehiclesVM() { Pojazdy = _pojazdService.Search(vin) }; return(View(vm)); }