Exemplo n.º 1
0
        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());
        }
Exemplo n.º 2
0
 public IList <string> GetStackableComponentsPotionsMisc()
 {
     return(ThreadExecuter.Execute(
                () => _repo.GetStackableComponentsPotionsMisc()
                ));
 }
Exemplo n.º 3
0
 public void Refresh()
 {
     SpecialRecords   = _databaseItemDao.GetSpecialStackableRecords();
     AllRecords       = new HashSet <string>(_databaseItemDao.ListAllRecords());
     StackableRecords = new HashSet <string>(_databaseItemDao.GetStackableComponentsPotionsMisc());
 }