/// <summary author="James Heim" created="2019/04/25"> /// Retrieve the line on a tab by its unique ID. /// </summary> /// <param name="memberTabLineID"></param> /// <returns>The TabLine specific to the suppied ID.</returns> public MemberTabLine RetrieveMemberTabLineByID(int memberTabLineID) { MemberTabLine tabLine = null; try { tabLine = _memberTabAccessor.SelectMemberTabLineByID(memberTabLineID); } catch (Exception ex) { ExceptionLogManager.getInstance().LogException(ex); throw ex; } return(tabLine); }