Ejemplo n.º 1
0
        /// <summary>
        /// 获取当前员工是否有药房管理角色
        /// </summary>
        /// <param name="p_strEmpID">员工ID</param>
        /// <param name="p_blnHasRole">是否有药房管理角色</param>
        /// <returns></returns>
        internal static void m_lngCheckEmpHasRole(string p_strEmpID, out bool p_blnHasRole)
        {
            p_blnHasRole = false;
            clsDcl_Instorage m_objDomain = new clsDcl_Instorage();

            m_objDomain.m_lngCheckEmpHasRole(p_strEmpID, out p_blnHasRole);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public clsCtl_AskForMedManage()
 {
     m_objDomain           = new clsDcl_AskForMedicine();
     m_objDomainDetail     = new clsDcl_AskForMedDetail();
     m_objDomainOutStorage = new clsDcl_MakeOutStorageOrder();
     objDomainInStorage    = new clsDcl_Instorage();
 }
Ejemplo n.º 3
0
        /// <summary>
        /// 获取出入库类型
        /// </summary>
        /// <param name="p_intType">0为入库,1为出库</param>
        /// <param name="p_dtStoreType"></param>
        internal static void m_lngGetTypeCode(Int16 p_intType, out DataTable p_dtStoreType)
        {
            p_dtStoreType = null;
            clsDcl_Instorage m_objDomain = new clsDcl_Instorage();

            m_objDomain.m_lngGetTypeCode(p_intType, out p_dtStoreType);
        }
Ejemplo n.º 4
0
 /// <summary>
 /// constructor
 /// </summary>
 public clsCtl_InStorage()
 {
     objDomain = new clsDcl_Instorage();
 }