Exemplo n.º 1
0
        public IActionResult Search(string query)
        {
            // Todo: Implement search restrictions to only recipes in your family book
            ObjectResult output = StatusCode(200, recipeDAL.NewSearch(query));

            return(output);
        }