示例#1
0
 public DataTable GetEndDateWithJobCode(string code)
 {
     try
     {
         TimesheetDAL endDateObj = new TimesheetDAL();
         DataTable    dt         = new DataTable();
         dt = endDateObj.SearchByCode(code);
         foreach (DataRow dr in dt.Rows)
         {
             endDateObj.endDate = dr["EndDate"].ToString();
         }
         return(dt);
     }
     catch { throw; }
 }
示例#2
0
 /// <summary>
 /// constructor
 /// </summary>
 public TimesheetBLL()
 {
     m_timeSheetDAL = new TimesheetDAL();
 }