public void Refresh() { var special = new List <string>(); special.AddRange(StashTab.HardcodedRecords); special.AddRange(_databaseItemDao.GetSpecialStackableRecords()); SpecialRecords = special; AllRecords = new HashSet <string>(_databaseItemDao.ListAllRecords()); StackableRecords = new HashSet <string>(_databaseItemDao.GetStackableComponentsPotionsMisc()); }
public IList <string> GetStackableComponentsPotionsMisc() { return(ThreadExecuter.Execute( () => _repo.GetStackableComponentsPotionsMisc() )); }
public void Refresh() { SpecialRecords = _databaseItemDao.GetSpecialStackableRecords(); AllRecords = new HashSet <string>(_databaseItemDao.ListAllRecords()); StackableRecords = new HashSet <string>(_databaseItemDao.GetStackableComponentsPotionsMisc()); }