public ActionResult Create()
        {
            string name      = Request.Form[("new-name")];
            string stringAge = Request.Form[("new-age")];
            string parent    = Request.Form[("new-parent")];

            int age = Int32.Parse(stringAge);

            Baby newBaby = new Baby(name, age, parent);

            newBaby.Save();

            List <Baby> allBabies = Baby.GetAll();//List should be reviewed

            return(View("Index", allBabies));
        }
        public ActionResult Index()
        {
            List <Baby> allBabies = Baby.GetAll();

            return(View(allBabies));
        }