public async Task <ActionResult> GetAllParticipants()
        {
            var participants = await _service.GetAllParticipants();

            return(Ok(participants));
        }