/// <summary>
        /// Verwerk dit object met de gegeven sprint.
        /// </summary>
        /// <param name="sprint"></param>
        public virtual void Verwerk(Sprint sprint)
        {
            if (gebruiker == null || sprint == null)
                return;

            SprintGebruiker sprintGebruiker = sprint.GeefSprintGebruikerVoor(gebruiker);

            if (sprintRol == 0)
            {
                if (sprintGebruiker == null)
                    return;

                sprintGebruiker.KoppelSprintGebruikerLos();
            }
            else
            {
                if (sprintGebruiker == null)
                    sprint.VoegGebruikerToe(gebruiker, sprintRol);
                else
                    sprintGebruiker.SprintRol = sprintRol;
            }
        }