Beispiel #1
0
        public IActionResult Delete(int id)
        {
            if (!_myService.Exists(id))
            {
                return(NotFound());
            }

            _myService.RemoveQuote(id);

            return(Ok());
        }