Beispiel #1
0
        public IActionResult Delete(int id)
        {
            if (_companyInformation.delete(id))
            {
                return(Ok());
            }

            return(NotFound("Not Found"));
        }