public async Task <ActionResult <CommentsDto[]> > Get()
        {
            try
            {
                var results = await _eventRepository.GetComments();

                var mappedEntities = _mapper.Map <CommentsDto[]>(results);
                return(Ok(mappedEntities));
            }
            catch (Exception)
            {
                return(this.StatusCode(StatusCodes.Status500InternalServerError, "Database Failure"));
            }
        }