コード例 #1
0
 public InventoryController(IInventoryAppService inventoryAppService)
 {
     _inventoryAppService = inventoryAppService;
 }
コード例 #2
0
 public void MyTestInitialize()
 {
     _service = _kernel.Get <IInventoryAppService>();
 }
コード例 #3
0
        public HomeController(IInventoryAppService inventoryAppService)
        {
            Contract.Requires <ArgumentNullException>(inventoryAppService != null, "inventoryAppService");

            _inventoryAppService = inventoryAppService;
        }