public object GetAll(string type)
        {
            switch (type)
            {
            case "Klant":
                return(_klantRepo.GetAll());

            case "Limousine":
                return(_limoRepo.GetAll());

            case "Locatie":
                return(_locaRepo.GetAll());

            case "Staffelkorting":
                return(_staffelRepo.GetAll());

            case "Reservering":
                return(_reserRepo.GetAll());

            default:
                break;
            }
            return(null);
        }