public ShopPurchaseMessageHandler(IShopItemDataStore shopItemDataStore, IItemPartDataStore itemPartDataStore, ICharacterBuilder characterBuilder, IUnitOfWorkFactory unitOfWorkFactory) { _shopItemDataStore = shopItemDataStore; _itemPartDataStore = itemPartDataStore; _characterBuilder = characterBuilder; _unitOfWorkFactory = unitOfWorkFactory; }
public ShopPageMessageHandler(IShopItemDataStore shopItemDataStore) { _shopItemDataStore = shopItemDataStore; }
public CharacterEquipmentBuilder(IShopItemDataStore shopItemDataStore, IItemPartDataStore itemPartDataStore) { _shopItemDataStore = shopItemDataStore; _itemPartDataStore = itemPartDataStore; }