Ejemplo n.º 1
0
        public async Task <IActionResult> GetEntityQuestions(long entityId, EntityType entityType)
        {
            var result = await _questionAppService.GetEntityQuestions(entityId, entityType);

            return(Ok(result));
        }