private IList <Choice> GetProjectChoices(string sProject, string sRole)
        {
            switch (sProject.ToUpper())
            {
            case "BUILD_DEPLOYMENT":
                var cardOptions = new List <Choice>()
                {
                    new Choice()
                    {
                        Value = "App-Deployment", Synonyms = new List <string>()
                        {
                            "App"
                        }
                    },
                    new Choice()
                    {
                        Value = "Informatica-Deployment", Synonyms = new List <string>()
                        {
                            "ETL"
                        }
                    },
                    new Choice()
                    {
                        Value = "RMI-Deployment", Synonyms = new List <string>()
                        {
                            "RMI"
                        }
                    },
                    new Choice()
                    {
                        Value = "CIT-Deployment", Synonyms = new List <string>()
                        {
                            "CIT", "WIT"
                        }
                    },
                    new Choice()
                    {
                        Value = "DB-Deployment", Synonyms = new List <string>()
                        {
                            "DB"
                        }
                    }
                };
                return(cardOptions);

            case "DB-DEPLOYMENT":
                MainDialog mainDialog = new MainDialog(Configuration, null, null);
                string[]   actions    = mainDialog.getActions(sRole, "SubAction");
                cardOptions = new List <Choice>();
                foreach (string action in actions)
                {
                    cardOptions.Add(new Choice()
                    {
                        Value = action, Synonyms = new List <string>()
                        {
                            action
                        }
                    });
                }
                //{
                //new Choice() { Value = "PM.SQL", Synonyms = new List<string>() { "QA(VPMTST1)" } },
                //new Choice() { Value = "API.SQL", Synonyms = new List<string>() { "SprintTest(VPMSPTE)" } },
                //new Choice() { Value = "ICMSDB.SQL", Synonyms = new List<string>() { "Sprint Demo(VPMDEMO)" } },
                //new Choice() { Value = "Others", Synonyms = new List<string>() { "CICD(VPMCICD)" } }, };
                return(cardOptions);

            default:
                return(null);
            }
        }