Esempio n. 1
0
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.AddOutApplyConfirm(entOTRd));
     }
 }
Esempio n. 2
0
File: Class1.cs Progetto: JuRogn/OA
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.AddOutApplyConfirm(entOTRd);
     }
 }
Esempio n. 3
0
 public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId));
     }
 }
Esempio n. 4
0
File: Class1.cs Progetto: JuRogn/OA
 public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId);
     }
 }
Esempio n. 5
0
 public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
     {
         int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId);
         return(rslt > 0);
     }
 }
Esempio n. 6
0
 public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState);
         return(rslt);
     }
 }
Esempio n. 7
0
 public string UpdateOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         if (bllOverTimeRecord.UpdateOutApplyConfirm(entOTRd) == 1)
             return "OK";
         else return "Fail";
     }
 }
Esempio n. 8
0
        public List <T_HR_OUTAPPLYCONFIRM> EmployeeOutApplyConfrimPaging(int pageIndex, int pageSize, string sort, string filterString, List <object> paras, ref int pageCount, string strCheckState, string strOwnerID)
        {
            using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
            {
                var ents = bll.EmployeeOutApplyConfirmPaging(pageIndex, pageSize, sort, filterString, paras, ref pageCount, strCheckState, strOwnerID);

                if (ents == null)
                {
                    return(null);
                }

                return(ents.ToList());
            }
        }
Esempio n. 9
0
File: Class1.cs Progetto: JuRogn/OA
        public List<T_HR_OUTAPPLYCONFIRM> EmployeeOutApplyConfrimPaging(int pageIndex, int pageSize, string sort, string filterString, List<object> paras, ref int pageCount, string strCheckState, string strOwnerID)
        {
            using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
            {
                var ents = bll.EmployeeOutApplyConfirmPaging(pageIndex, pageSize, sort, filterString, paras, ref  pageCount, strCheckState, strOwnerID);

                if (ents == null)
                {
                    return null;
                }

                return ents.ToList();
            }
        }
Esempio n. 10
0
File: Class1.cs Progetto: JuRogn/OA
 public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
     {
         int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId);
         return (rslt > 0);
     }
 }
Esempio n. 11
0
File: Class1.cs Progetto: JuRogn/OA
 public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState);
         return rslt;
     }
 }