public ActionResu ` enter code here ` lt Index()
        {
            SomeOrder se = new SomeOrder {
                TypeDrink = "3"
            };

            return(View(se));
        }
        public ActionResult Index(SomeOrder model)
        {
            //model.TypeDrink gives you selected radio button in HTTP POST
            SomeOrder se = new SomeOrder {
                TypeDrink = model.TypeDrink
            };

            return(View(se));
        }