public ActionResult AddAllergiesSpiritual(Common.AllergiesSpiritual allspr, string PatientIds)
        {
            BusinessLayer.PatientsBL patient = new BusinessLayer.PatientsBL();

            try
            {
                allspr.PatientId_fk = Int32.Parse(PatientIds);

                patient.AddAllergiesSpiritual(allspr);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Json(null, JsonRequestBehavior.AllowGet));
        }