protected override void m_mthSetSelectedDeletedRecord(clsPatient p_objSelectedPatient,
                                                              string p_strOpenDate)
        {
            //检查参数
            if (p_objSelectedPatient == null || p_strOpenDate == null || p_strOpenDate == "")
            {
                return;
            }

            clsGeneralNurseRecordContent_CSDetail objContent;

            clsGeneralNurseRecord_CSService objITRServ =
                (clsGeneralNurseRecord_CSService)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(clsGeneralNurseRecord_CSService));

            //获取记录
            long lngRes = objITRServ.m_lngGetDelRecordContentWithInpatient(p_objSelectedPatient.m_StrInPatientID, p_objSelectedPatient.m_DtmSelectedInDate.ToString("yyyy-MM-dd HH:mm:ss"), p_strOpenDate, out objContent);

            //objITRServ.Dispose();
            if (lngRes <= 0 || objContent == null)
            {
                return;
            }


            //设置当前记录及记录时间
            m_objCurrentPatient = p_objSelectedPatient;
            txtInPatientID.Text = this.m_objCurrentPatient.m_StrHISInPatientID;

            m_mthSetDeletedGUIFromContent(objContent);
        }