public async Task <bool> AddEventParticipants(EventParticipantsInputModel eventParticipantsInputModel)
 {
     return(await _eventParticipantsRepository.Add(new EventParticipants(eventParticipantsInputModel.PersonId, eventParticipantsInputModel.EventId, false)) > 0);
 }