private RecipeListView ReadRecipesFromJson()
        {
            var jsonPath = configuration.GetValue <string>("DataPaths:recipesJson");

            return(JsonFileReader.Deserialize <RecipeListView>(jsonPath));
        }
        private IngredientListView ReadIngredientsFromJson()
        {
            var jsonPath = configuration.GetValue <string>("DataPaths:ingredientsJson");

            return(JsonFileReader.Deserialize <IngredientListView>(jsonPath));
        }