private void addTitle() { LetterGroupEntity letterGroupEntity = _letterGroupBL.get(_groupId); string title = letterGroupEntity.get(LetterGroupEntity.FIELD_GROUPTITLE).ToString(); txtTitle.Text = title; }
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); }