Exemplo n.º 1
0
 public InventoryController(IInventoryAppService inventoryAppService)
 {
     _inventoryAppService = inventoryAppService;
 }
 public void MyTestInitialize()
 {
     _service = _kernel.Get <IInventoryAppService>();
 }
Exemplo n.º 3
0
        public HomeController(IInventoryAppService inventoryAppService)
        {
            Contract.Requires <ArgumentNullException>(inventoryAppService != null, "inventoryAppService");

            _inventoryAppService = inventoryAppService;
        }