Пример #1
0
        //Search HR/CLERK Information
        public static DataTable SearchClerk_BLL(int userId)
        {
            DataTable dtEmp;

            try
            {
                dtEmp = Users_DAL.SearchUserById(userId);
            }
            catch (HRMSException ex)
            {
                throw ex;
            }
            catch (SqlException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dtEmp);
        }