public ActionResult <QuoteModel> Get(int id) { if (!_myService.Exists(id)) { return(NotFound()); } return(_myService.GetById(id)); }