public IActionResult Pozycz(string id) { var wypozyczonePojazdy = _kierowcaService.Get().SelectMany(x => x.Pojazdy, (x, y) => new string(y.ToString())).ToList(); PozyczVM model = new PozyczVM() { KierowcaId = id, Kierowca = new KierowcaVM(_kierowcaService.Get(id)), Pojazdy = _pojazdService.Get().Where(x => !wypozyczonePojazdy.Contains(x.Id)).ToList() }; return(View(model)); }
public IActionResult Index() { ListAllVehiclesVM vm = new ListAllVehiclesVM() { Pojazdy = _pojazdService.Get() }; return(View(vm)); }