コード例 #1
0
        public DataTable DepartmentProfessor_sel()
        {
            Staffdal  t  = new Staffdal();
            DataSet   ds = new DataSet();
            DataTable dt = new DataTable();

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