예제 #1
0
        /// <summary>
        /// 获取全部病区信息
        /// </summary>
        /// <param name="p_dtable"></param>
        /// <returns></returns>
        public long m_lngGetAreaInformation(out DataTable p_dtable)
        {
            long lngRes = 0;

            p_dtable = null;
            clsMedStoreBseInfoSvc objSvc =
                (clsMedStoreBseInfoSvc)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(clsMedStoreBseInfoSvc));

            lngRes = objSvc.m_lngGetAreaInformation(objPrincipal, out p_dtable);
            objSvc.Dispose();
            return(lngRes);
        }