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 ThanaDA internal class ThanaDA { #region Constructor private ThanaDA() { } #endregion #region Insert function internal static void Insert(TransactionContext tc, Thana item) { tc.ExecuteNonQuery("INSERT INTO THANA(THANAID, CODE, NAME, DISTRICTID, SEQUENCENO, STATUS, CREATEDBY, CREATIONDATE)" + " VALUES(%n, %s, %s, %n, %n, %n, %n, %d)", item.ID.Integer, item.Code, item.Name, item.DistrictID.Integer, item.Sequence, item.Status, item.CreatedBy.Integer, item.CreatedDate); } #endregion #region Update function internal static void Update(TransactionContext tc, Thana item) { tc.ExecuteNonQuery("UPDATE THANA SET code=%s, name=%s, districtid=%n, sequencenO=%n, status=%n, modifiedby=%n, modifieddate=%d" + " WHERE THANAID=%n", item.Code, item.Name, item.DistrictID.Integer, 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 THANA"); } internal static IDataReader Get(TransactionContext tc, EnumStatus status) { if (status == EnumStatus.Regardless) { return tc.ExecuteReader("SELECT * FROM THANA Order By SequenceNo", status); } else { return tc.ExecuteReader("SELECT * FROM THANA Where Status=%n Order By SequenceNo", status); } } internal static IDataReader Get(TransactionContext tc, ID nID) { return tc.ExecuteReader("SELECT * FROM THANA WHERE THANAID=%n", nID.Integer); } internal static IDataReader Get(TransactionContext tc, string sCode) { return tc.ExecuteReader("SELECT * FROM THANA WHERE Code=%s", sCode); } internal static IDataReader GetByDistID(TransactionContext tc, ID nDistID) { return tc.ExecuteReader("SELECT * FROM THANA WHERE DistrictID=%n ORDER BY Name", nDistID.Integer); } #endregion #region Delete function internal static void Delete(TransactionContext tc, ID nID) { tc.ExecuteNonQuery("DELETE FROM [THANA] WHERE THANAID=%n", nID.Integer); } #endregion } #endregion }