using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace DataDictionary.DAL { public class PersonDutyDB { public DataTable GetDataTablePersonDuty() { string strSql = "select Id,Name from dbo.PersonDuty where IsValid=1"; return HelperDB.DbHelperSQL.GetDataTable(strSql); } } }