84 lines
2.5 KiB
C#
84 lines
2.5 KiB
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 Class OccupationDA
|
|
internal class OccupationDA
|
|
{
|
|
#region constructor
|
|
public OccupationDA()
|
|
{ }
|
|
#endregion
|
|
|
|
#region Insert function
|
|
internal static void Insert(TransactionContext tc, Occupation item)
|
|
{
|
|
tc.ExecuteNonQuery("INSERT INTO OCCUPATION(OCCUPATIONID, CODE, DESCRIPTION, SEQUENCENO, STATUS, CREATEDBY, CREATIONDATE)" +
|
|
" VALUES(%n, %s, %s, %n, %n, %n, %d)", item.ID.Integer, item.Code, item.Description, item.Sequence, item.Status, item.CreatedBy.Integer, item.CreatedDate);
|
|
}
|
|
#endregion
|
|
|
|
#region Update function
|
|
|
|
internal static void Update(TransactionContext tc, Occupation item)
|
|
{
|
|
tc.ExecuteNonQuery("UPDATE OCCUPATION SET code=%s, description=%s, sequencenO=%n, status=%n, modifiedby=%n, modifieddate=%d" +
|
|
"WHERE OCCUPATIONID=%n", item.Code, item.Description, item.Sequence, item.Status, item.ModifiedBy.Integer, item.ModifiedDate, item.ID.Integer);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Get function
|
|
internal static IDataReader Get(TransactionContext tc)
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM OCCUPATION");
|
|
}
|
|
|
|
internal static IDataReader Get(TransactionContext tc, EnumStatus status)
|
|
{
|
|
if (EnumStatus.Active == status)
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM OCCUPATION Where Status=%n Order By Description", status);
|
|
}
|
|
else
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM OCCUPATION Order By Description");
|
|
}
|
|
|
|
}
|
|
|
|
internal static IDataReader Get(TransactionContext tc, ID nID)
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM OCCUPATION WHERE OCCUPATIONID=%n", nID.Integer);
|
|
}
|
|
|
|
internal static IDataReader Get(TransactionContext tc, string sCode)
|
|
{
|
|
return tc.ExecuteReader("SELECT * FROM OCCUPATION WHERE Code=%s", sCode);
|
|
}
|
|
#endregion
|
|
|
|
#region Delete function
|
|
|
|
internal static void Delete(TransactionContext tc, ID nID)
|
|
{
|
|
tc.ExecuteNonQuery("DELETE FROM [OCCUPATION] WHERE OCCUPATIONID=%n", nID.Integer);
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|