Ejemplo n.º 1
0
        public DateTime GetSelectedDate(int iEmpNumber, string sFromToDateDesc, out string sWeekID)
        {
            try
            {
                DateTime dtSelectedDate;

                IGetTimeSheets iwTSheet = new Timesheet(this.ConnectionString);

                dtSelectedDate = iwTSheet.GetSelectedDate(iEmpNumber, sFromToDateDesc, out sWeekID);

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