Exemplo n.º 1
0
        private void SelectRules()
        {
            RulesDataSelect _rulesSelect = new RulesDataSelect();

            try
            {
                _rulesSelect.ComID = this.ComID;
                _rulesSelect.GetRulesData();
                this.Ds = _rulesSelect.Ds;
            }
            catch (Exception ex)
            {
                throw new Exception("ProcessSelect::BLL::RulesSelect"+ex.Message);
            }
            finally
            {
                _rulesSelect = null;
            }
        }
Exemplo n.º 2
0
        public void GetUnits3()
        {
            RulesDataSelect _unitSelect = new RulesDataSelect("User3");

            try
            {

                _unitSelect.RulesData = this._rulesData;
                _unitSelect.GetUnit3();
                this.Ds = _unitSelect.Ds;
            }
            catch (Exception ex)
            {
                throw new Exception("ProcessSelect::BLL::UnitSelect" + ex.Message);
            }
            finally
            {
                _unitSelect = null;
            }
        }
Exemplo n.º 3
0
        public void UnitRuleInfo()
        {
            RulesDataSelect _unitSelect = new RulesDataSelect("unitInfo");

            try
            {

                _unitSelect.RulesData = this._rulesData;
                _unitSelect.UnitRuleInfo();
                this.Ds = _unitSelect.Ds;
            }
            catch (Exception ex)
            {
                throw new Exception("ProcessSelect::BLL::UnitSelect" + ex.Message);
            }
            finally
            {
                _unitSelect = null;
            }
        }
Exemplo n.º 4
0
        public void GetAssignedUnits()
        {
            RulesDataSelect _unitSelect = new RulesDataSelect("AssignedUnits");

            try
            {
                //_unitSelect.ComID = this.ComID;
                _unitSelect.RulesData = this._rulesData;
                _unitSelect.GetAssignedUnits();
                this.Ds = _unitSelect.Ds;
            }
            catch (Exception ex)
            {
                throw new Exception("ProcessSelect::BLL::UnitSelect" + ex.Message);
            }
            finally
            {
                _unitSelect = null;
            }
        }