コード例 #1
0
        public async Task <ActionResult <IEnumerable <Interaction> > > GetAllInteractions()
        {
            IEnumerable <Interaction> results = await _interactionService.GetAllInteractions();

            return(Ok(results));
        }