Example #1
0
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.AddOutApplyConfirm(entOTRd));
     }
 }
Example #2
0
File: Class1.cs Project: JuRogn/OA
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.AddOutApplyConfirm(entOTRd);
     }
 }
Example #3
0
 public string UpdateOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         if (bllOverTimeRecord.UpdateOutApplyConfirm(entOTRd) == 1)
             return "OK";
         else return "Fail";
     }
 }