Beispiel #1
0
        public ActionResult OpdMedRecrdDataforCommonTest(int commtestId, string shortDes, string Detail)
        {
            string str = "";
            OpdMedicalRecordsProviders pro = new OpdMedicalRecordsProviders();

            int i = pro.EditCommonTestforMedicalRecords(commtestId, shortDes, Detail);

            if (i != 0)
            {
                str = "Edit Common Test Success";
            }

            return(Json(str, JsonRequestBehavior.AllowGet));
        }
Beispiel #2
0
        public ActionResult OpdMedRecrdDataforFurtherTest(int OpdMrFurtherTestId, string fTestName)
        {
            string str = "";

            OpdMedicalRecordsProviders pro = new OpdMedicalRecordsProviders();

            int i = pro.EditCommonTestforMedicalRecords(OpdMrFurtherTestId, fTestName);

            if (i != 0)
            {
                str = "Edit Further Test Success";
            }

            return(Json(str, JsonRequestBehavior.AllowGet));
        }