Exemplo n.º 1
0
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return(bllOverTimeRecord.AddOutApplyConfirm(entOTRd));
     }
 }
Exemplo n.º 2
0
Arquivo: Class1.cs Projeto: JuRogn/OA
 public string AddOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         return bllOverTimeRecord.AddOutApplyConfirm(entOTRd);
     }
 }
Exemplo n.º 3
0
 public string UpdateOutApplyConfrim(T_HR_OUTAPPLYCONFIRM entOTRd)
 {
     using (OutApplyConfirmBLL bllOverTimeRecord = new OutApplyConfirmBLL())
     {
         if (bllOverTimeRecord.UpdateOutApplyConfirm(entOTRd) == 1)
             return "OK";
         else return "Fail";
     }
 }