CEL_Payroll/Payroll.Service/SAPLookUp/Service/SAPDataProcessDetailService.cs

178 lines
6.1 KiB
C#
Raw Permalink Normal View History

2024-09-17 14:30:13 +06:00
//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 SAPDataProcessDetail Service
// [Serializable]
// public class SAPDataProcessDetailService : ServiceTemplate, ISAPDataProcessDetailService
// {
// #region Private functions and declaration
// Cache _cache = new Cache(typeof(SAPDataProcessDetail));
// #endregion
// public SAPDataProcessDetailService() { }
// private void MapObject(SAPDataProcessDetail oSAPDataProcessDetail, DataReader oReader)
// {
// base.SetObjectID(oSAPDataProcessDetail, oReader.GetID("SAPDataProcessDetailID"));
// oSAPDataProcessDetail.EmployeeNo = oReader.GetString("EmployeeNo");
// oSAPDataProcessDetail.Name = oReader.GetString("Name");
// oSAPDataProcessDetail.DataType = oReader.GetString("DataType");
// oSAPDataProcessDetail.Description = oReader.GetString("Description");
// this.SetObjectState(oSAPDataProcessDetail, Ease.CoreV35.ObjectState.Saved);
// }
// protected override T CreateObject<T>(DataReader oReader)
// {
// SAPDataProcessDetail oSAPDataProcessDetail = new SAPDataProcessDetail();
// MapObject(oSAPDataProcessDetail, oReader);
// return oSAPDataProcessDetail as T;
// }
// protected SAPDataProcessDetail CreateObject(DataReader oReader)
// {
// SAPDataProcessDetail oSAPDataProcessDetail = new SAPDataProcessDetail();
// MapObject(oSAPDataProcessDetail, oReader);
// return oSAPDataProcessDetail;
// }
// #region Service implementation
// public SAPDataProcessDetail Get(ID id)
// {
// SAPDataProcessDetail oSAPDataProcessDetail = new SAPDataProcessDetail();
// #region Cache Header
// oSAPDataProcessDetail = _cache["Get", id] as SAPDataProcessDetail;
// if (oSAPDataProcessDetail != null)
// return oSAPDataProcessDetail;
// #endregion
// TransactionContext tc = null;
// try
// {
// tc = TransactionContext.Begin();
// DataReader oreader = new DataReader(SAPDataProcessDetailDA.Get(tc, id));
// if (oreader.Read())
// {
// oSAPDataProcessDetail = this.CreateObject<SAPDataProcessDetail>(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(oSAPDataProcessDetail, "Get", id);
// #endregion
// return oSAPDataProcessDetail;
// }
// public ObjectsTemplate<SAPDataProcessDetail> Get()
// {
// #region Cache Header
// ObjectsTemplate<SAPDataProcessDetail> SAPDataProcessDetails = _cache["Get"] as ObjectsTemplate<SAPDataProcessDetail>;
// if (SAPDataProcessDetails != null)
// return SAPDataProcessDetails;
// #endregion
// TransactionContext tc = null;
// try
// {
// tc = TransactionContext.Begin();
// DataReader dr = new DataReader(SAPDataProcessDetailDA.Get(tc));
// SAPDataProcessDetails = this.CreateObjects<SAPDataProcessDetail>(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(SAPDataProcessDetails, "Get");
// #endregion
// return SAPDataProcessDetails;
// }
// public ID Save(SAPDataProcessDetail oSAPDataProcessDetail)
// {
// TransactionContext tc = null;
// try
// {
// tc = TransactionContext.Begin(true);
// if (oSAPDataProcessDetail.IsNew)
// {
// int id = tc.GenerateID("SAPDataProcessDetail", "SAPDataProcessDetailID");
// base.SetObjectID(oSAPDataProcessDetail, ID.FromInteger(id));
// SAPDataProcessDetailDA.Insert(tc, oSAPDataProcessDetail);
// }
// else
// {
// SAPDataProcessDetailDA.Update(tc, oSAPDataProcessDetail);
// }
// tc.End();
// return oSAPDataProcessDetail.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);
// SAPDataProcessDetailDA.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
//}