コード例 #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());
        }
コード例 #2
0
ファイル: DatabaseItemRepo.cs プロジェクト: molybedenum/iagd
 public IList <string> GetStackableComponentsPotionsMisc()
 {
     return(ThreadExecuter.Execute(
                () => _repo.GetStackableComponentsPotionsMisc()
                ));
 }
コード例 #3
0
 public void Refresh()
 {
     SpecialRecords   = _databaseItemDao.GetSpecialStackableRecords();
     AllRecords       = new HashSet <string>(_databaseItemDao.ListAllRecords());
     StackableRecords = new HashSet <string>(_databaseItemDao.GetStackableComponentsPotionsMisc());
 }