15 lines
318 B
C#
15 lines
318 B
C#
|
using Ease.Core.DataAccess;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace HRM.DA
|
|||
|
{
|
|||
|
internal class MOBILEAppVersionDA
|
|||
|
{
|
|||
|
internal static IDataReader GetLatestVersion(TransactionContext tc)
|
|||
|
{
|
|||
|
string sql = SQLParser.MakeSQL("Select * from MOBILEAppVersion where IsCurrentVersion=1");
|
|||
|
return tc.ExecuteReader(sql);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|