public IEnumerable <SuggestionResponse> Generate()
        {
            var response = new List <SuggestionResponse>
            {
                BaseSuggestions.GetBlankList(),
                new SuggestionResponse
                {
                    SuggestionTitle        = "What are your new years resolutions?",
                    SuggestionDescription  = "Keep track of your resolutions and make sure to see them through!",
                    SuggestionIcon         = "fas fa-glass-cheers",
                    ListTitle              = "New years resolutions",
                    ListDescription        = "These are the things I want to do better this year.",
                    ListBackgroundImageUrl = "https://shinestorage.azureedge.net/productlistbackgrounds/1.jpg"
                },
                new SuggestionResponse
                {
                    SuggestionTitle        = "Looking to reduce your outgoings?",
                    SuggestionDescription  = "Why not list out the things you can cut down on and then get them sorted.",
                    SuggestionIcon         = "fas fa-money-check-alt",
                    ListTitle              = "Cut outgoings",
                    ListDescription        = "These are the costs we should be able to reduce.",
                    ListBackgroundImageUrl = "https://shinestorage.azureedge.net/productlistbackgrounds/1.jpg"
                },
                BaseSuggestions.Tomorrow(),
                BaseSuggestions.OddJobs()
            };

            return(response);
        }
        public IEnumerable <SuggestionResponse> Generate()
        {
            var response = new List <SuggestionResponse>
            {
                BaseSuggestions.GetBlankList(),
                BaseSuggestions.ShoppingList(),
                BaseSuggestions.Tomorrow(),
                BaseSuggestions.OddJobs()
            };

            return(response);
        }
        public IEnumerable <SuggestionResponse> Generate()
        {
            var response = new List <SuggestionResponse>
            {
                BaseSuggestions.GetBlankList(),
                new SuggestionResponse
                {
                    SuggestionTitle        = "Christmas is coming, are you ready?",
                    SuggestionDescription  = "No need to stress, create a list to help with your Christmas shopping.",
                    SuggestionIcon         = "fas fa-gift",
                    ListTitle              = "Christmas shopping",
                    ListDescription        = "Spread the Christmas cheer by remembering to get everybody a gift this year!",
                    ListBackgroundImageUrl = "https://shinestorage.azureedge.net/bespokebackgrounds/christmas.jpg"
                },
                BaseSuggestions.ShoppingList(),
                BaseSuggestions.Tomorrow(),
                BaseSuggestions.OddJobs()
            };

            return(response);
        }