예제 #1
0
파일: OutApply.cs 프로젝트: jjg0519/OA
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.AddOutApplyConfirm(entOTRd));
     }
 }
예제 #2
0
파일: Class1.cs 프로젝트: JuRogn/OA
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.AddOutApplyConfirm(entOTRd);
     }
 }
예제 #3
0
파일: OutApply.cs 프로젝트: jjg0519/OA
 public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId));
     }
 }
예제 #4
0
파일: Class1.cs 프로젝트: JuRogn/OA
 public T_HR_OUTAPPLYCONFIRM GetOutApplyConfrimByID(string strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.GetOutApplyConfirmByID(strOverTimeRecordId);
     }
 }
예제 #5
0
파일: OutApply.cs 프로젝트: jjg0519/OA
 public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
     {
         int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId);
         return(rslt > 0);
     }
 }
예제 #6
0
파일: OutApply.cs 프로젝트: jjg0519/OA
 public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState);
         return(rslt);
     }
 }
예제 #7
0
 public string UpdateOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         if (bllOverTimeRecord.UpdateOutApplyConfirm(entOTRd) == 1)
             return "OK";
         else return "Fail";
     }
 }
예제 #8
0
파일: OutApply.cs 프로젝트: jjg0519/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());
            }
        }
예제 #9
0
파일: Class1.cs 프로젝트: 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();
            }
        }
예제 #10
0
파일: Class1.cs 프로젝트: JuRogn/OA
 public bool DeleteOutApplyConfrim(string[] strOverTimeRecordId)
 {
     using (OutApplyConfirmBLL bll = new OutApplyConfirmBLL())
     {
         int rslt = bll.DeleteOutApplyConfirm(strOverTimeRecordId);
         return (rslt > 0);
     }
 }
예제 #11
0
파일: Class1.cs 프로젝트: JuRogn/OA
 public string AuditOutApplyConfrim(string strOverTimeRecordID, string strCheckState)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         string rslt = bllOverTimeRecord.AuditOutApplyConfirm(strOverTimeRecordID, strCheckState);
         return rslt;
     }
 }