56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35.DataAccess;
|
|
using Payroll.BO;
|
|
using System.Data;
|
|
using Ease.Core.DataAccess;
|
|
using HRM.BO;
|
|
|
|
namespace Payroll.Service
|
|
{
|
|
public class ClaimPaymentDetailDA
|
|
{
|
|
internal static IDataReader Get(TransactionContext tc, int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static IDataReader Get(TransactionContext tc, EnumStatus status, int payrollTypeID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static void Insert(TransactionContext tc, ClaimPaymentDetail oClaimPaymentDetail)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static void Update(TransactionContext tc, ClaimPaymentDetail oClaimPaymentDetail)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static void DeleteChild(TransactionContext tc, int iD)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static void Delete(TransactionContext tc, int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static void Insert(TransactionContext tc, ClaimPaymentNew oClaimPaymentNew)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
internal static IDataReader GetByClaimPaymentNewID(TransactionContext tc, int id)
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM ClaimPaymentDetail WHERE ClaimPaymentNewID = %n", id);
|
|
}
|
|
}
|
|
}
|