Ejemplo n.º 1
0
        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));
        }
Ejemplo n.º 2
0
        public IActionResult Index()
        {
            ListAllVehiclesVM vm = new ListAllVehiclesVM()
            {
                Pojazdy = _pojazdService.Get()
            };

            return(View(vm));
        }