Beispiel #1
0
        public bool ApproveRejectAttendanceBLL(AttendanceEntity attendanceEntity)
        {
            bool isUpdated = false;

            try
            {
                isUpdated = attendanceDAL.ApproveRejectAttendanceDAL(attendanceEntity);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            return(isUpdated);
        }