コード例 #1
0
 public ProductApplicationService(IUnitOfWork unitOfWork,
                                  IProductRepository productRepository,
                                  ProductCreateAssembler productCreateAssembler)
 {
     _unitOfWork             = unitOfWork;
     _productRepository      = productRepository;
     _productCreateAssembler = productCreateAssembler;
 }