Exemplo n.º 1
0
        public void Load(int iID)
        {
            CDbEmployeeDepartment dbDt = new CDbEmployeeDepartment();
            string tmpDat;

            tmpDat = dbDt.GetByID(iID);

            Clear();
            if (tmpDat.Length > 0)
            {
                LoadVals(tmpDat);
            }

            dbDt = null;
        }