コード例 #1
0
        public IActionResult getcompanyipodetails(string coname)
        {
            var ls = repo.getCompanyIPODetails(coname);

            if (ls == null)
            {
                return(NotFound());
            }
            return(Ok(ls));
        }