Пример #1
0
        public ActionResult GeneralTab(GynaeForm model)
        {
            GynaeBL obj = new GynaeBL();

            if (ModelState.IsValid)
            {
                var toReturn = obj.Save(model, out outmodel);
                return(RedirectToAction("PhysicalExaminationTab", "GynaePhyExamination", new { area = "PN", PatientId = model.PatientId }));
            }
            ViewBag.PatientId = new SelectList(Dropdowns.PatientDropDown, "Value", "Text");
            return(View());
        }