コード例 #1
0
 public ProductFeedbackBusiness(IProductFeedbackRepository productFeedback, IUnitOfWork unitOfWork)
 {
     _productFeedback = productFeedback;
     _unitOfWork      = unitOfWork;
 }
コード例 #2
0
 public ProductCommentController(IProductFeedbackRepository productCommentRepository)
 {
     _productCommentRepository         = productCommentRepository;
     _productCommentRepository.Context = rc;
 }