Beispiel #1
0
        public async Task <IActionResult> GetEntityComments(long entityId, string entityName)
        {
            var comments = await _commentAppService.GetEntityComments(entityId, entityName);

            return(Ok(comments));
        }