Example #1
0
 public ItemDataController(IItemDataRepository itemDataRepository)
 {
     _itemDataRepository = itemDataRepository;
 }
Example #2
0
 public ItemFactory(IItemDataRepository spellDataRepository, IDice dice)
 {
     items = spellDataRepository.GetAllItems().ToList();
     this.dice = dice;
 }