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