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(),
                new SuggestionResponse
                {
                    SuggestionTitle        = "Fancy jetting off this summer?",
                    SuggestionDescription  = "If you want to jet away this summer, its time to start planning.",
                    SuggestionIcon         = "fas fa-place",
                    ListTitle              = "Summer holiday planning",
                    ListDescription        = "These are the things we need to do to make our holiday a reality",
                    ListBackgroundImageUrl = "https://shinestorage.azureedge.net/productlistbackgrounds/3.jpg"
                },
                BaseSuggestions.ShoppingList(),
                new SuggestionResponse
                {
                    SuggestionTitle        = "Are you ready for valentines day?",
                    SuggestionDescription  = "Maybe you want a space to think about what to do this year?",
                    SuggestionIcon         = "fas fa-heart",
                    ListTitle              = "Valentines day",
                    ListDescription        = "Lets plan something special for valentines day this year",
                    ListBackgroundImageUrl = "https://shinestorage.azureedge.net/productlistbackgrounds/5.jpg"
                },
                BaseSuggestions.Tomorrow(),
            };

            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);
        }