예제 #1
0
        public async Task <ActionResult <IEnumerable <DetailDTO> > > Get()
        {
            var detail = await _detailService.GetAllAsynk();

            return(Ok(detail));
        }