Exemplo n.º 1
0
        public IActionResult Get()
        {
            var descriptions = RecipeViewModel.Convert(_uow.RecipeRepository.Get().OrderBy(d => d.CategoryId).ToList());

            if (descriptions != null)
            {
                return(Response(descriptions));
            }

            return(Response());
        }