示例#1
0
        public IActionResult getCompanyDetailsByID(int cid)
        {
            var ls = repo.getCompanyDetailsByID(cid);

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