public ContactPersoonController(
     IAnalyseRepository analyseRepository,
     IDepartementRepository departementenRepository,
     IWerkgeverRepository werkgeverRepository,
     IContactPersoonRepository contactPersoonRepository,
     IExceptionLogRepository exceptionLogRepository)
 {
     _analyseRepository        = analyseRepository;
     _departementRepository    = departementenRepository;
     _werkgeverRepository      = werkgeverRepository;
     _contactPersoonRepository = contactPersoonRepository;
     _exceptionLogRepository   = exceptionLogRepository;
 }
        //public UserController(){}

        public BedrijfController(IBedrijfRepository bedrijfR, IStudentRepository studentR,
            IStagebegeleiderRepository stagebegeleiderR, IUserRepository usersRepository,
            ISpecialisatieRepository specialisatie, IOpdrachtRepository opdracht,
            IContactPersoonRepository contactPersoonRepository,
            IGemeenteRepository gemeenteRepository, IStatusRepository statusRepository
            )
        {
            this.bedrijfRepository = bedrijfR;
            this.stagebegeleiderRepository = stagebegeleiderR;
            this.studentRepository = studentR;
            this.userRepository = usersRepository;
            this.specialisatieRepository = specialisatie;
            this.opdrachtRepository = opdracht;
            this.gemeenteRepository = gemeenteRepository;
            this.contactPersoonRepository = contactPersoonRepository;
            this.statusRepository = statusRepository;
        }