Esempio n. 1
0
 public bool UndoRepaymentMass(int objectType, string objectID, string year, string month)
 {
     using (EmployeeSalaryRecordBLL bll = new EmployeeSalaryRecordBLL())
     {
         return bll.UndoRepayment(objectType, objectID, year, month);
     }
 }
Esempio n. 2
0
 public bool UndoRepayment(string employeeid, string year, string month)
 {
     using (EmployeeSalaryRecordBLL bll = new EmployeeSalaryRecordBLL())
     {
         return bll.UndoRepayment(employeeid, year, month);
     }
 }