예제 #1
0
        public async Task <IActionResult> GetAll()
        {
            try
            {
                var result = await userDetailRepository.GetAllAsync();

                return(Ok(result));
            }
            catch (Exception)
            {
                throw;
            }
        }