示例#1
0
        /// <summary>
        /// 获取药品类型
        /// </summary>
        internal void m_mthGetMedicineTypeSet(out clsMS_MedicineTypeSetVO[] p_objMPVO)
        {
            p_objMPVO = null;
            clsDcl_MedicineTypeSet objMTDomain = new clsDcl_MedicineTypeSet();
            long lngRes = objMTDomain.m_lngGetAllMedicinTypeSetInfo(out p_objMPVO);

            objMTDomain = null;
        }
示例#2
0
        /// <summary>
        /// 获取药品类型设置
        /// </summary>
        internal void m_mthGetMedicineTypeSet()
        {
            clsMS_MedicineTypeSetVO[] objMPVO     = null;
            clsDcl_MedicineTypeSet    objMTDomain = new clsDcl_MedicineTypeSet();
            long lngRes = objMTDomain.m_lngGetAllMedicinTypeSetInfo(out objMPVO);

            objMTDomain = null;

            if (objMPVO == null || m_objViewer.m_cboType.Items.Count > 0)
            {
                return;
            }

            clsMS_MedicineTypeSetVO objAll = new clsMS_MedicineTypeSetVO();

            objAll.m_intMedicineTypeSetID   = 0;
            objAll.m_strMedicineTypeSetName = "全部";

            m_objViewer.m_cboType.Items.Add(objAll);
            m_objViewer.m_cboType.Items.AddRange(objMPVO);

            m_objViewer.m_cboType.SelectedIndex = 0;
        }
示例#3
0
 /// <summary>
 /// 药品类型设置
 /// </summary>
 public clsCtl_MedicineTypeSet()
 {
     m_objDomain = new clsDcl_MedicineTypeSet();
 }