Пример #1
0
        public DataTable UserManages_Sel(string UserID)
        {
            Staffdal  t  = new Staffdal();
            DataSet   ds = new DataSet();
            DataTable dt = new DataTable();

            ds = t.UserManages_Sel(UserID);
            if (ds.Tables.Count > 0)
            {
                dt = ds.Tables[0];
            }
            return(dt);
        }