Example #1
0
        private void addTitle()
        {
            LetterGroupEntity letterGroupEntity = _letterGroupBL.get(_groupId);
            string            title             = letterGroupEntity.get(LetterGroupEntity.FIELD_GROUPTITLE).ToString();

            txtTitle.Text = title;
        }
Example #2
0
        private void fillGrid(string cond)
        {
            LetterGroupEntity entity = null;

            if (UnselectIds != null && UnselectIds.Length > 0)
            {
                if (cond.Length > 0)
                {
                    cond += " AND ";
                }
                cond += LetterGroupEntity.FIELD_ID + " not in(" + UnselectIds + ")";
            }


            entity = _letterGroupBL.get(cond);

            System.Collections.Hashtable hash = new Hashtable();
            _gridTools.bindDataToGrid(gridLetterGroup, entity, null, hash);
        }