public IActionResult AantalInvul(MeegeefModel model)
        {
            MeegeefModel2 model2 = new MeegeefModel2
            {
                Reis            = model.Reis,
                Reis_uitvoering = model.Reis_uitvoering
            };

            return(View(model2));
        }
        public IActionResult MedereizigersJa(int?reis_uitvoering, int?reis)
        {
            MeegeefModel model = new MeegeefModel
            {
                Reis            = reis,
                Reis_uitvoering = reis_uitvoering
            };


            return(View(model));
        }