コード例 #1
0
ファイル: SubmitState.cs プロジェクト: hatefi-arman/Modules
        public SubmitState(IInventoryOperationDomainService inventoryOperationDomainService,
            IOrderStateFactory orderStateFactory
            )
        {
            this.inventoryOperationDomainService = inventoryOperationDomainService;

            this.orderStateFactory = orderStateFactory;
        }
コード例 #2
0
ファイル: OpenState.cs プロジェクト: hatefi-arman/Modules
 public OpenState(IOrderStateFactory orderStateFactory)
 {
     this.orderStateFactory = orderStateFactory;
 }