コード例 #1
0
        public IActionResult Userdisplay(int Aid)
        {
            List <AccountInfo> list = new List <AccountInfo>();

            try
            {
                list = bll.Userdisplay(Aid);
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
            }
            return(Ok(new { data = list }));
        }