コード例 #1
0
 public CommentAppService(IDbUnitOfWork dbUnitOfWork, ICommentRepository commentRepository, ICommentTagRepository commentTagRepository, ICommentImageRepository commentImageRepository, IAuthServiceProxy authServiceProxy)
 {
     _commentRepository      = commentRepository;
     _commentTagRepository   = commentTagRepository;
     _dbUnitOfWork           = dbUnitOfWork;
     _commentImageRepository = commentImageRepository;
     _authServiceProxy       = authServiceProxy;
 }
コード例 #2
0
 public CommentService(ICommentRepository _commentRepository, IUserRepository _userRepository, IShopRepository _shopRepository,
                       ICommentImageRepository _commentImageRepository, IOrderDetailRepository _orderDetailRepository, IUnitOfWork _unitOfWork)
 {
     commentRepository      = _commentRepository;
     userRepository         = _userRepository;
     shopRepository         = _shopRepository;
     commentImageRepository = _commentImageRepository;
     unitOfWork             = _unitOfWork;
     orderDetailRepository  = _orderDetailRepository;
 }
コード例 #3
0
 public CommentAppService(
     IDbUnitOfWork dbUnitOfWork,
     ICommentRepository commentRepository,
     ICommentTagRepository commentTagRepository,
     ICommentImageRepository commentImageRepository,
     IReservationRepository reservationRepository,
     IImageServiceProxy imageServiceProxy,
     IAuthServiceProxy authServiceProxy)
 {
     _commentRepository      = commentRepository;
     _commentTagRepository   = commentTagRepository;
     _dbUnitOfWork           = dbUnitOfWork;
     _commentImageRepository = commentImageRepository;
     _reservationRepository  = reservationRepository;
     _imageServiceProxy      = imageServiceProxy;
     _authServiceProxy       = authServiceProxy;
 }