public ActionResult Create(Patient patient)
        {
            PatientModel Model = new PatientModel();

            Model.CreateNew(patient);
            return(RedirectToAction("Index"));
        }