Ejemplo n.º 1
0
        public DataSet GetEmployeeDetail(int iEmployeeNumber)
        {
            try
            {
                DataSet dstEmployeeDetails = null;

                IGetTimeSheets igTimeSheet = new Timesheet(this.ConnectionString);

                dstEmployeeDetails = igTimeSheet.GetEmployeeDetail(iEmployeeNumber);

                return(dstEmployeeDetails);
            }
            catch (Exception ex)
            {
                //ObjNLog.Error(string.Format("Exception Raised {0}", ex.Message));
                throw ex;
            }
        }