/// <summary name="Carlos Arzu" created="2019/04/26"> /// Retrieve list of Shops. /// </summary> public List <string> retrieveShops() { List <string> dataString; try { dataString = _memberTabAccessor.SelectShop(); } catch (Exception ex) { ExceptionLogManager.getInstance().LogException(ex); throw; } return(dataString); }