Example #1
0
 public GoodsAppService(
     IDbUnitOfWork dbUnitOfWork,
     IEventBus eventBus,
     IGoodsRepository goodsRepository,
     IOnlineGoodsRepository onlineGoodsRepository,
     IGoodsImageRepository goodsImageRepository,
     IGrouponConditionRepository grouponConditionRepository,
     IOnlineGoodsImageRepository onlineGoodsImageRepository,
     IOnlineGrouponConditionRepository onlineGrouponConditionRepository,
     IImageServiceProxy imageServiceProxy,
     IOrganizationServiceProxy organizationServiceProxy,
     IAmapProxy amapProxy,
     IActivityServiceProxy activityServiceProxy,
     IOrderServiceProxy orderServiceProxy,
     IAuthServiceProxy authServiceProxy,
     TmpInstanceGenerate tmp)
 {
     _tmp                              = tmp;
     _dbUnitOfWork                     = dbUnitOfWork;
     _eventBus                         = eventBus;
     _goodsRepository                  = goodsRepository;
     _onlineGoodsRepository            = onlineGoodsRepository;
     _goodsImageRepository             = goodsImageRepository;
     _grouponConditionRepository       = grouponConditionRepository;
     _onlineGoodsImageRepository       = onlineGoodsImageRepository;
     _onlineGrouponConditionRepository = onlineGrouponConditionRepository;
     _imageServiceProxy                = imageServiceProxy;
     _organizationServiceProxy         = organizationServiceProxy;
     _amapProxy                        = amapProxy;
     _activityServiceProxy             = activityServiceProxy;
     _orderServiceProxy                = orderServiceProxy;
     _authServiceProxy                 = authServiceProxy;
 }
Example #2
0
 public ServicerAppService(IServicerRepository servicerRepository, IServicerImageRepository servicerImageRepository, IDbUnitOfWork dbUnitOfWork, IImageServiceProxy imageServiceProxy, IOrganizationServiceProxy organizationServiceProxy, IAmapProxy amapProxy)
 {
     _servicerRepository       = servicerRepository;
     _servicerImageRepository  = servicerImageRepository;
     _dbUnitOfWork             = dbUnitOfWork;
     _imageServiceProxy        = imageServiceProxy;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy = amapProxy;
 }
Example #3
0
 public TopicAppService(ITopicRepository topicRepository,
                        IDbUnitOfWork dbUnitOfWork,
                        IOrganizationServiceProxy organizationServiceProxy,
                        IAmapProxy amapProxy,
                        ITopicImageRepository topicImageRepository,
                        IImageServiceProxy imageServiceProxy)
 {
     _topicRepository          = topicRepository;
     _dbUnitOfWork             = dbUnitOfWork;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy            = amapProxy;
     _topicImageRepository = topicImageRepository;
     _imageServiceProxy    = imageServiceProxy;
 }
Example #4
0
 public ServiceAppService(
     IServiceRepository serviceRepository,
     IServiceImageRepository serviceImageRepository,
     IDbUnitOfWork unitOfWork,
     IImageServiceProxy imageServiceProxy,
     IOrganizationServiceProxy organizationServiceProxy,
     IAmapProxy amapProxy,
     TmpInstanceGenerate tmp)
 {
     _tmp = tmp;
     _serviceRepository        = serviceRepository;
     _serviceImageRepository   = serviceImageRepository;
     _dbUnitOfWork             = unitOfWork;
     _imageServiceProxy        = imageServiceProxy;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy = amapProxy;
 }
Example #5
0
 public ReservationAppService(IReservationRepository reservationRepository,
                              IDbUnitOfWork dbUnitOfWork,
                              IEventBus eventBus,
                              IServiceRepository serviceRepository,
                              IServicerRepository servicerRepository,
                              IOrganizationServiceProxy organizationServiceProxy,
                              IAmapProxy amapProxy,
                              IOrderServiceProxy orderServiceProxy)
 {
     _reservationRepository = reservationRepository;
     _dbUnitOfWork          = dbUnitOfWork;
     _eventBus                 = eventBus;
     _serviceRepository        = serviceRepository;
     _servicerRepository       = servicerRepository;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy                = amapProxy;
     _orderServiceProxy        = orderServiceProxy;
 }