예제 #1
0
        public ActionResult <QuoteModel> Get(int id)
        {
            if (!_myService.Exists(id))
            {
                return(NotFound());
            }

            return(_myService.GetById(id));
        }