/// <summary name="Carlos Arzu" created="2019/04/26"> /// Retrieve list of members. /// </summary> public DataTable retrieveOfferings(int shopID) { DataTable memberTable; try { memberTable = _memberTabAccessor.selectOfferings(shopID); } catch (Exception ex) { ExceptionLogManager.getInstance().LogException(ex); throw; } return(memberTable); }