public ActionResult BabyLottoResult(BabyLottoModel obj)
        {
            BabyLottoModel model = new BabyLottoModel();

            model.LottoNum = obj.LottoNum;

            return(View("BabyLottoResults", model));
        }
        public ActionResult BabyLottoResult(string ticketA, string ticketB, string ticketC, string ticketD, string ticketE)
        {
            BabyLottoModel model = new BabyLottoModel()
            {
                TicketA = ticketA,
                TicketB = ticketB,
                TicketC = ticketC,
                TicketD = ticketD,
                TicketE = ticketE
            };

            return(View("BabyLottoResult", model));
        }
 public ActionResult BabyLottoResult(BabyLottoModel model)
 {
     return(View("BabyLottoResult", model));
 }