177 lines
5.9 KiB
C#
177 lines
5.9 KiB
C#
//using System;
|
|
//using System.Data;
|
|
//using System.Linq;
|
|
//using Ease.CoreV35;
|
|
//using Ease.CoreV35.Model;
|
|
//using Ease.CoreV35.DataAccess;
|
|
//using System.Collections.Generic;
|
|
//using Payroll.BO;
|
|
//using Ease.CoreV35.Caching;
|
|
|
|
//namespace Payroll.Service
|
|
//{
|
|
// #region TaxParameterSlab Service
|
|
// [Serializable]
|
|
// public class TaxParameterSlabService : ServiceTemplate, ITaxParameterSlabService
|
|
// {
|
|
// #region Private functions and declaration
|
|
// Cache _cache = new Cache(typeof(TaxParameterSlab));
|
|
|
|
// #endregion
|
|
// public TaxParameterSlabService() { }
|
|
|
|
// private void MapObject(TaxParameterSlab oTaxParameterSlab, DataReader oReader)
|
|
// {
|
|
// base.SetObjectID(oTaxParameterSlab, oReader.GetID("TaxParameterSlabID"));
|
|
// oTaxParameterSlab.TaxparamID = oReader.GetID("taxParamID");
|
|
// oTaxParameterSlab.IncomeAmount = oReader.GetDouble("incomeAmount").Value;
|
|
// oTaxParameterSlab.TaxPercent = oReader.GetDouble("taxPercent").Value;
|
|
// oTaxParameterSlab.SequenceNo = oReader.GetInt32("sequenceNo").Value;
|
|
// oTaxParameterSlab.ParamType = oReader.GetInt32("type").Value;
|
|
// this.SetObjectState(oTaxParameterSlab, Ease.CoreV35.ObjectState.Saved);
|
|
// }
|
|
// protected override T CreateObject<T>(DataReader oReader)
|
|
// {
|
|
// TaxParameterSlab oTaxParameterSlab = new TaxParameterSlab();
|
|
// MapObject(oTaxParameterSlab, oReader);
|
|
// return oTaxParameterSlab as T;
|
|
// }
|
|
// protected TaxParameterSlab CreateObject(DataReader oReader)
|
|
// {
|
|
// TaxParameterSlab oTaxParameterSlab = new TaxParameterSlab();
|
|
// MapObject(oTaxParameterSlab, oReader);
|
|
// return oTaxParameterSlab;
|
|
// }
|
|
// #region Service implementation
|
|
// public TaxParameterSlab Get(ID id)
|
|
// {
|
|
// TaxParameterSlab oTaxParameterSlab = new TaxParameterSlab();
|
|
// #region Cache Header
|
|
// oTaxParameterSlab = _cache["Get", id] as TaxParameterSlab;
|
|
// if (oTaxParameterSlab != null)
|
|
// return oTaxParameterSlab;
|
|
// #endregion
|
|
// TransactionContext tc = null;
|
|
// try
|
|
// {
|
|
// tc = TransactionContext.Begin();
|
|
// DataReader oreader = new DataReader(TaxParameterSlabDA.Get(tc, id));
|
|
// if (oreader.Read())
|
|
// {
|
|
// oTaxParameterSlab = this.CreateObject<TaxParameterSlab>(oreader);
|
|
// }
|
|
// oreader.Close();
|
|
// tc.End();
|
|
// }
|
|
// catch (Exception e)
|
|
// {
|
|
// #region Handle Exception
|
|
// if (tc != null)
|
|
// tc.HandleError();
|
|
// ExceptionLog.Write(e);
|
|
// throw new ServiceException(e.Message, e);
|
|
// #endregion
|
|
// }
|
|
// #region Cache Footer
|
|
// _cache.Add(oTaxParameterSlab, "Get", id);
|
|
// #endregion
|
|
// return oTaxParameterSlab;
|
|
// }
|
|
|
|
// public ObjectsTemplate<TaxParameterSlab> Get()
|
|
// {
|
|
// #region Cache Header
|
|
|
|
// ObjectsTemplate<TaxParameterSlab> taxParameterSlabs = _cache["Get"] as ObjectsTemplate<TaxParameterSlab>;
|
|
// if (taxParameterSlabs != null)
|
|
// return taxParameterSlabs;
|
|
|
|
// #endregion
|
|
|
|
// TransactionContext tc = null;
|
|
// try
|
|
// {
|
|
// tc = TransactionContext.Begin();
|
|
|
|
// DataReader dr = new DataReader(TaxParameterSlabDA.Get(tc));
|
|
// taxParameterSlabs = this.CreateObjects<TaxParameterSlab>(dr);
|
|
// dr.Close();
|
|
|
|
// tc.End();
|
|
// }
|
|
// catch (Exception e)
|
|
// {
|
|
// #region Handle Exception
|
|
|
|
// if (tc != null)
|
|
// tc.HandleError();
|
|
// ExceptionLog.Write(e);
|
|
|
|
// throw new ServiceException(e.Message, e);
|
|
|
|
// #endregion
|
|
// }
|
|
|
|
// #region Cache Footer
|
|
|
|
// _cache.Add(taxParameterSlabs, "Get");
|
|
|
|
// #endregion
|
|
|
|
// return taxParameterSlabs;
|
|
// }
|
|
|
|
// public ID Save(TaxParameterSlab oTaxParameterSlab)
|
|
// {
|
|
// TransactionContext tc = null;
|
|
// try
|
|
// {
|
|
// tc = TransactionContext.Begin(true);
|
|
// if (oTaxParameterSlab.IsNew)
|
|
// {
|
|
// int id = tc.GenerateID("TaxParameterSlab", "TaxParameterSlabID");
|
|
// base.SetObjectID(oTaxParameterSlab, ID.FromInteger(id));
|
|
// TaxParameterSlabDA.Insert(tc, oTaxParameterSlab);
|
|
// }
|
|
// else
|
|
// {
|
|
// TaxParameterSlabDA.Update(tc, oTaxParameterSlab);
|
|
// }
|
|
// tc.End();
|
|
// return oTaxParameterSlab.ID;
|
|
// }
|
|
// catch (Exception e)
|
|
// {
|
|
// #region Handle Exception
|
|
// if (tc != null)
|
|
// tc.HandleError();
|
|
// ExceptionLog.Write(e);
|
|
// throw new ServiceException(e.Message, e);
|
|
// #endregion
|
|
// }
|
|
// }
|
|
|
|
// public void Delete(ID id)
|
|
// {
|
|
// TransactionContext tc = null;
|
|
// try
|
|
// {
|
|
// tc = TransactionContext.Begin(true);
|
|
// TaxParameterSlabDA.Delete(tc, id);
|
|
// tc.End();
|
|
// }
|
|
// catch (Exception e)
|
|
// {
|
|
// #region Handle Exception
|
|
// if (tc != null)
|
|
// tc.HandleError();
|
|
// ExceptionLog.Write(e);
|
|
// throw new ServiceException(e.Message, e);
|
|
// #endregion
|
|
// }
|
|
// }
|
|
// #endregion
|
|
// }
|
|
// #endregion
|
|
//}
|