//UpdateModuleInfo 修改某患者某模块的负责医生
        public JsonResult UpdateModuleInfo(string PatientId, string Module, string DoctorId, string Seq, string PreDocId)
        {
            var user = Session["CurrentUser"] as UserAndRole;
            var res  = new JsonResult();
            int Ret  = 0;

            Ret      = _ServicesSoapClient.SetBasicInfoDetail(PatientId, Module, "Doctor", Convert.ToInt32(Seq), DoctorId, "", 1, user.UserId, user.TerminalName, user.TerminalIP, user.DeviceType) ? 1 : 0;
            Ret      = _ServicesSoapClient.DeletePatient(PreDocId, Module, PatientId);
            Ret      = _ServicesSoapClient.SetPsDoctorDetailOnPat(DoctorId, Module, PatientId, "", 1, user.UserId, user.TerminalName, user.TerminalIP, user.DeviceType) ? 1 : 0;
            res.Data = Ret;
            res.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
            return(res);
        }