Ejemplo n.º 1
0
 public EquipmentLogic(ICharacterInfo characterInfo, IEquipmentAccess equipmentAccess, IInventoryLogic inventoryLogic, ICharacterManager characterManager)
 {
     _characterInfo    = characterInfo;
     _equipmentAccess  = equipmentAccess;
     _inventoryLogic   = inventoryLogic;
     _characterManager = characterManager;
 }
Ejemplo n.º 2
0
 public InventoryController(ICharacterInfo characterInfo, IInventoryLogic inventoryLogic)
 {
     _characterInfo  = characterInfo;
     _inventoryLogic = inventoryLogic;
 }
Ejemplo n.º 3
0
 public InventoryLogic(IInventoryLogic inventoryLogic)
 {
     _inventoryLogic = inventoryLogic;
 }
Ejemplo n.º 4
0
 public InventoryController(IInventoryLogic logic) : base(logic)
 {
 }
Ejemplo n.º 5
0
 public InventoryController(IMapper mapper, IInventoryLogic inventoryLogic) : base(mapper, inventoryLogic)
 {
 }
Ejemplo n.º 6
0
        // GET: Inventory

        public InventoryController(IMapper mapper)
        {
            _inventoryLogic = DependencyResolver.InventoryLogic;
            _mapper         = mapper;
        }
Ejemplo n.º 7
0
 /// <summary>
 /// Constructor for DI
 /// </summary>
 /// <param name="inventoryLogic"></param>
 public InventoryController(IInventoryLogic inventoryLogic)
 {
     _inventoryLogic = inventoryLogic;
 }
Ejemplo n.º 8
0
        // GET: Inventory


        public InventoryController()
        {
            _inventoryLogic = DependencyResolver.InventoryLogic;
        }