예제 #1
0
        /// <summary>
        /// 查询处方描述
        /// </summary>
        public long m_lngGetRecDesc(string strRecID, out clsOutpatientRecipeDesc_VO clsVO)
        {
            long lngRes = 0;

            clsVO = new clsOutpatientRecipeDesc_VO();
            com.digitalwave.iCare.middletier.HIS.clsOPDoctorSvc objSvc =
                (com.digitalwave.iCare.middletier.HIS.clsOPDoctorSvc)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(com.digitalwave.iCare.middletier.HIS.clsOPDoctorSvc));
            lngRes = objSvc.m_lngFindRecipeDesc(objPrincipal, strRecID, out clsVO);
            objSvc.Dispose();
            return(lngRes);
        }