Esempio n. 1
0
        public IActionResult getMatchingCompanies(string Cpattr)
        {
            var ls = repo.getMatchingCompanies(Cpattr);

            if (ls.Count() == 0)
            {
                return(NotFound());
            }
            return(Ok(ls));
        }