public ActionResult BindProfile(string prefix, string OrgID)
        {
            BL_PatientCWProfile     _PatientCWProfile    = new BL_PatientCWProfile();
            List <PatientCWProfile> PatientCWProfileList = new List <PatientCWProfile>();
            DataSet ds = _PatientCWProfile.BindProfile(prefix, OrgID);

            foreach (DataRow dr in ds.Tables[0].Rows)
            {
                PatientCWProfile catl = new PatientCWProfile();

                catl.ProfileID = dr["ProfileID"].ToString();

                catl.ProfileName        = dr["Name"].ToString();
                catl.PatientCWProfileID = dr["PatientCWProfileID"].ToString();
                PatientCWProfileList.Add(catl);
            }
            return(new JsonResult {
                Data = PatientCWProfileList, JsonRequestBehavior = JsonRequestBehavior.AllowGet
            });
        }