Example #1
0
        public async Task <bool> CreateCommentAsync(Comment comment)
        {
            var created = await _ticketRepository.CreateCommentAsync(comment);

            return(created);
        }