19 lines
460 B
C#
19 lines
460 B
C#
using System;
|
|
using System.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
namespace AIMSDAL
|
|
{
|
|
internal partial class DPersonDuty
|
|
{
|
|
public static DataTable GetDataTablePersonDuty()
|
|
{
|
|
string strSql = "select Id,Name from dbo.PersonDuty where IsValid=1";
|
|
return HelperDB.DbHelperSQL.GetDataTable(strSql);
|
|
}
|
|
}
|
|
}
|