Example #1
0
 public CommentAppService(IDbUnitOfWork dbUnitOfWork, ICommentRepository commentRepository, ICommentTagRepository commentTagRepository, ICommentImageRepository commentImageRepository, IAuthServiceProxy authServiceProxy)
 {
     _commentRepository      = commentRepository;
     _commentTagRepository   = commentTagRepository;
     _dbUnitOfWork           = dbUnitOfWork;
     _commentImageRepository = commentImageRepository;
     _authServiceProxy       = authServiceProxy;
 }
Example #2
0
 public TagStatisticsAppService(
     ICommentTagRepository commentTagRepository,
     ITagRepository tagRepository,
     IDbUnitOfWork dbUnitOfWork,
     IServiceRepository serviceRepository,
     IServicerRepository servicerRepository,
     IReservationRepository reservationRepository)
 {
     _tagRepository         = tagRepository;
     _commentTagRepository  = commentTagRepository;
     _dbUnitOfWork          = dbUnitOfWork;
     _serviceRepository     = serviceRepository;
     _servicerRepository    = servicerRepository;
     _reservationRepository = reservationRepository;
 }
Example #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;
 }
Example #4
0
 public GoodsTagStatisticsAppService(ICommentTagRepository commentTagRepository, ITagRepository tagRepository, IDbUnitOfWork dbUnitOfWork)
 {
     _tagRepository        = tagRepository;
     _commentTagRepository = commentTagRepository;
     _dbUnitOfWork         = dbUnitOfWork;
 }