コード例 #1
0
        [ProducesResponseType(StatusCodes.Status500InternalServerError)]                            // if something unexpectedly went wrong with the database or http request/response
        public async Task <ActionResult <IEnumerable <Furs2Feathers.Domain.Models.Claims> > > GetClaims()
        {
            var list = await claimsRepo.ToListAsync();


            return(Ok(list));
        }