public async Task <bool> CreateCommentAsync(Comment comment) { var created = await _ticketRepository.CreateCommentAsync(comment); return(created); }