175 lines
6.0 KiB
C#
175 lines
6.0 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 SalaryEmpCostCenter Service
|
|||
|
// [Serializable]
|
|||
|
// public class SalaryEmpCostCenterService : ServiceTemplate, ISalaryEmpCostCenterService
|
|||
|
// {
|
|||
|
// #region Private functions and declaration
|
|||
|
// Cache _cache = new Cache(typeof(SalaryEmpCostCenter));
|
|||
|
|
|||
|
// #endregion
|
|||
|
// public SalaryEmpCostCenterService() { }
|
|||
|
|
|||
|
// private void MapObject(SalaryEmpCostCenter oSalaryEmpCostCenter, DataReader oReader)
|
|||
|
// {
|
|||
|
// base.SetObjectID(oSalaryEmpCostCenter, oReader.GetID("SalaryEmpCostCenterID"));
|
|||
|
// oSalaryEmpCostCenter.SalaryMontlyID = oReader.GetID("SalaryMonthlyID");
|
|||
|
// oSalaryEmpCostCenter.CostCenterID = oReader.GetID("CostCenterID");
|
|||
|
// oSalaryEmpCostCenter.Percentage= oReader.GetDouble("Percentage").Value;
|
|||
|
// oSalaryEmpCostCenter.EmployeeID = oReader.GetID("EmployeeID");
|
|||
|
// this.SetObjectState(oSalaryEmpCostCenter, Ease.CoreV35.ObjectState.Saved);
|
|||
|
// }
|
|||
|
// protected override T CreateObject<T>(DataReader oReader)
|
|||
|
// {
|
|||
|
// SalaryEmpCostCenter oSalaryEmpCostCenter = new SalaryEmpCostCenter();
|
|||
|
// MapObject(oSalaryEmpCostCenter, oReader);
|
|||
|
// return oSalaryEmpCostCenter as T;
|
|||
|
// }
|
|||
|
// protected SalaryEmpCostCenter CreateObject(DataReader oReader)
|
|||
|
// {
|
|||
|
// SalaryEmpCostCenter oSalaryEmpCostCenter = new SalaryEmpCostCenter();
|
|||
|
// MapObject(oSalaryEmpCostCenter, oReader);
|
|||
|
// return oSalaryEmpCostCenter;
|
|||
|
// }
|
|||
|
// #region Service implementation
|
|||
|
// public SalaryEmpCostCenter Get(ID id)
|
|||
|
// {
|
|||
|
// SalaryEmpCostCenter oSalaryEmpCostCenter = new SalaryEmpCostCenter();
|
|||
|
// #region Cache Header
|
|||
|
// oSalaryEmpCostCenter = _cache["Get", id] as SalaryEmpCostCenter;
|
|||
|
// if (oSalaryEmpCostCenter != null)
|
|||
|
// return oSalaryEmpCostCenter;
|
|||
|
// #endregion
|
|||
|
// TransactionContext tc = null;
|
|||
|
// try
|
|||
|
// {
|
|||
|
// tc = TransactionContext.Begin();
|
|||
|
// DataReader oreader = new DataReader(SalaryEmpCostCenterDA.Get(tc, id));
|
|||
|
// if (oreader.Read())
|
|||
|
// {
|
|||
|
// oSalaryEmpCostCenter = this.CreateObject<SalaryEmpCostCenter>(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(oSalaryEmpCostCenter, "Get", id);
|
|||
|
// #endregion
|
|||
|
// return oSalaryEmpCostCenter;
|
|||
|
// }
|
|||
|
// public ObjectsTemplate<SalaryEmpCostCenter> Get()
|
|||
|
// {
|
|||
|
// #region Cache Header
|
|||
|
|
|||
|
// ObjectsTemplate<SalaryEmpCostCenter> salaryEmpCostCenters = _cache["Get"] as ObjectsTemplate<SalaryEmpCostCenter>;
|
|||
|
// if (salaryEmpCostCenters != null)
|
|||
|
// return salaryEmpCostCenters;
|
|||
|
|
|||
|
// #endregion
|
|||
|
|
|||
|
// TransactionContext tc = null;
|
|||
|
// try
|
|||
|
// {
|
|||
|
// tc = TransactionContext.Begin();
|
|||
|
|
|||
|
// DataReader dr = new DataReader(SalaryMonthlyDA.Get(tc));
|
|||
|
// salaryEmpCostCenters = this.CreateObjects<SalaryEmpCostCenter>(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(salaryEmpCostCenters, "Get");
|
|||
|
|
|||
|
// #endregion
|
|||
|
|
|||
|
// return salaryEmpCostCenters;
|
|||
|
// }
|
|||
|
|
|||
|
// public ID Save(SalaryEmpCostCenter oSalaryEmpCostCenter)
|
|||
|
// {
|
|||
|
// TransactionContext tc = null;
|
|||
|
// try
|
|||
|
// {
|
|||
|
// tc = TransactionContext.Begin(true);
|
|||
|
// if (oSalaryEmpCostCenter.IsNew)
|
|||
|
// {
|
|||
|
// int id = tc.GenerateID("SalaryEmpCostCenter", "SalaryEmpCostCenterID");
|
|||
|
// base.SetObjectID(oSalaryEmpCostCenter, ID.FromInteger(id));
|
|||
|
// SalaryEmpCostCenterDA.Insert(tc, oSalaryEmpCostCenter);
|
|||
|
// }
|
|||
|
// else
|
|||
|
// {
|
|||
|
// SalaryEmpCostCenterDA.Update(tc, oSalaryEmpCostCenter);
|
|||
|
// }
|
|||
|
// tc.End();
|
|||
|
// return oSalaryEmpCostCenter.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);
|
|||
|
// SalaryEmpCostCenterDA.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
|
|||
|
//}
|