Ejemplo n.º 1
0
 public void CreateParticipant(Participant participant)
 {
     try
     {
         _participantsRepository.CreateParticipant(participant);
     }
     catch (DuplicateParticipantException ex)
     {
         throw new HttpException(ex.Message);
     }
 }