Example #1
0
 public void CheckAbnormRdForCompanyByDate(string strCompanyId, DateTime dtPunchFrom, DateTime dtPunchTo, ref string strMsg)
 {
     using (AbnormRecordBLL bll = new AbnormRecordBLL())
     {
         bll.CheckAbnormRdForCompanyByDate(strCompanyId, dtPunchFrom, dtPunchTo, ref strMsg);
     }
 }
Example #2
0
 public void CheckAbnormRdForEmployeesByDate(string strEmployeeIds, DateTime dtPunchFrom, DateTime dtPunchTo, ref string strMsg)
 {
     using (AbnormRecordBLL bll = new AbnormRecordBLL())
     {
          bll.CheckAbnormRdForEmployeesByDate(strEmployeeIds, dtPunchFrom, dtPunchTo, ref strMsg);
     }
 }
Example #3
0
 public List<AbnormalAttendanceeEntity> GetLasterClockInRecord(string ownerId, string ownerCompanyId, string startDate, string endDate)
 {
     using (AbnormRecordBLL bllAttRd = new AbnormRecordBLL())
     {
         return bllAttRd.GetLasterClockInRecord(ownerId, ownerCompanyId, startDate, endDate);
     }
 }
Example #4
0
 public byte[] ExportEmployeesIntime(string ownerId, string ownerCompanyId, string startDate, string endDate)
 {
     using (AbnormRecordBLL bllAttRd = new AbnormRecordBLL())
     {
         return bllAttRd.ExportEmployeesIntime(ownerId, ownerCompanyId, startDate, endDate);
     }
 }
Example #5
0
 public List<AbnormalAttendanceeEntity> ListEMPLOYEEABNORMRECORD(string ownerId, string ownerCompanyId, string startDate, string endDate)
 {
     using (AbnormRecordBLL bllAttRd = new AbnormRecordBLL())
     {
         return bllAttRd.ListEMPLOYEEABNORMRECORD(ownerId, ownerCompanyId, startDate, endDate);
     }
 }
Example #6
0
 public List<AbnormalAttendanceeEntity> GetAdjustableVacation(string ownerId, string ownerCompanyId, string startDate, string endDate)
 {
     using (AbnormRecordBLL bllAttRd = new AbnormRecordBLL())
     {
         return bllAttRd.GetAdjustableVacation(ownerId, ownerCompanyId, startDate, endDate);
     }
 }
Example #7
0
 public void CheckAbnormRecordByEmployeeIds(string strEmployeeIds, string strPunchMonth, ref string strMsg)
 {
     using (AbnormRecordBLL bllAbnormRecord = new AbnormRecordBLL())
     {
         bllAbnormRecord.CheckAbnormRecordByEmployeeIds(strEmployeeIds, strPunchMonth, ref strMsg);
     }
 }
Example #8
0
 public void CheckAbnormRecordByCompanyId(string strCompanyId, string strPunchMonth, ref string strMsg)
 {
     using (AbnormRecordBLL bllAbnormRecord = new AbnormRecordBLL())
     {
         bllAbnormRecord.CheckAbnormRecordByCompanyId(strCompanyId, strPunchMonth, ref strMsg);
     }
 }
Example #9
0
 public void AbnormRecordCheckAlarm(string strEmployeeId)
 {
     using (AbnormRecordBLL bll = new AbnormRecordBLL())
     {
         bll.AbnormRecordCheckAlarm(strEmployeeId);
     }
 }
Example #10
0
        public List<T_HR_EMPLOYEEABNORMRECORD> GetAbnormRecordRdListByMultSearch(string strOwnerID, string strEmployeeID, string strSignInState, string strCurStartDate, string strCurEndDate,
            string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            using (AbnormRecordBLL bll = new AbnormRecordBLL())
            {
                var ents = bll.GetAbnormRecordRdListByMultSearch(strOwnerID, strEmployeeID, strSignInState, strCurStartDate, strCurEndDate, strSortKey, pageIndex, pageSize, ref pageCount).ToList();
                if (ents == null)
                {
                    return null;
                }

                return ents.ToList();
            }
        }
Example #11
0
        public List<T_HR_EMPLOYEEABNORMRECORD> GetAbnormRecordByEmployeeID(string EmployeeID)
        {
            using (AbnormRecordBLL bll = new AbnormRecordBLL())
            {
                var ents = bll.GetAbnormRecordByEmployeeID(EmployeeID);
                if (ents == null)
                {
                    return null;
                }

                return ents.ToList();
            }
        }