Example #1
0
 public static AttendanceApplication GetAttendanceApplicationByAttendanceApplicationID(int AttendanceApplicationID)
 {
     try
     {
         return(AttendanceApplicationIntegration.GetAttendanceApplicationByAttendanceApplicationID(AttendanceApplicationID));
     }
     catch (Exception ex)
     {
         throw (new Exception(MethodBase.GetCurrentMethod().DeclaringType.ToString() + "." + (new System.Diagnostics.StackFrame()).GetMethod().Name, ex));
     }
 }
Example #2
0
 public static List <AttendanceApplication> GetAttendanceApplicationsAll(string searchText = "", bool showDeleted = false)
 {
     try
     {
         return(AttendanceApplicationIntegration.GetAttendanceApplicationsAll(searchText, showDeleted));
     }
     catch (Exception ex)
     {
         throw (new Exception(MethodBase.GetCurrentMethod().DeclaringType.ToString() + "." + (new System.Diagnostics.StackFrame()).GetMethod().Name, ex));
     }
 }
Example #3
0
 /// <summary>
 /// ReportingOfficer wise
 /// </summary>
 public static List <AttendanceApplication> GetPeningAttendanceApplicationsByReportingEmployee(int EmployeeID = -1)
 {
     try
     {
         return(AttendanceApplicationIntegration.GetPeningAttendanceAmendmentApplicationsByReportingEmployee(EmployeeID));
     }
     catch (Exception ex)
     {
         throw (new Exception(MethodBase.GetCurrentMethod().DeclaringType.ToString() + "." + (new System.Diagnostics.StackFrame()).GetMethod().Name, ex));
     }
 }
Example #4
0
 public static List <AttendanceApplication> GetPendingAttendanceApplicationsAll()
 {
     try
     {
         return(AttendanceApplicationIntegration.GetPendingAttendanceApplicationsAll());
     }
     catch (Exception ex)
     {
         throw (new Exception(MethodBase.GetCurrentMethod().DeclaringType.ToString() + "." + (new System.Diagnostics.StackFrame()).GetMethod().Name, ex));
     }
 }