Пример #1
0
        public ActionResult <List <QuoteModel> > Get(string category)
        {
            if (!_categoryService.Exists(category))
            {
                return(NotFound());
            }

            return(_myService.QuotesByCategoryName(category));
        }