CEL_Payroll/Payroll.Service/SearchReport/DA/SearchEmployeeDA.cs
2024-09-17 14:30:13 +06:00

35 lines
639 B
C#

using System;
using Payroll.BO;
using System.Data;
using System.Linq;
using Ease.CoreV35.Model;
using System.Data.SqlClient;
using Ease.CoreV35.DataAccess;
using System.Collections.Generic;
using Ease.CoreV35.DataAccess.SQL;
namespace Payroll.Service
{
#region SearchEmployeeDA
internal class SearchEmployeeDA
{
#region Constructor
private SearchEmployeeDA() { }
#endregion
#region Get Function
internal static IDataReader Search(TransactionContext tc, string sql)
{
return tc.ExecuteReader("%q",sql);
}
#endregion
}
#endregion
}