Esempio n. 1
0
        public IActionResult deleteCompany(int cid)
        {
            var ls = repo.delCompanyDetails(cid);

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