public GESClaimsMiddleware(IAuthServiceProxy proxy, GESConfiguration config, IMemoryCache cache, ILogger logger)
 {
     this.gesConfig = config;
     this.cache     = cache;
     this.logger    = logger;
     this.proxy     = proxy;
 }
Example #2
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 #3
0
 public MainViewModel(IMessageService <bool> messageService, IDataServiceProxy dataServiceProxy
                      , IAuthServiceProxy authServiceProxy, ISettingService settingService) : base(messageService)
 {
     _dataServiceProxy = dataServiceProxy;
     _authProxy        = authServiceProxy;
     _settingService   = settingService;
 }
Example #4
0
 public GrouponActivityAppService(IGrouponActivityRepository grouponActivityRepository, IGrouponParticipationRepository grouponParticipationRepository, IDbUnitOfWork dbUnitOfWork, IAuthServiceProxy authServiceProxy, IImageServiceProxy imgServiceProxy)
 {
     _grouponActivityRepository      = grouponActivityRepository;
     _grouponParticipationRepository = grouponParticipationRepository;
     _dbUnitOfWork     = dbUnitOfWork;
     _authServiceProxy = authServiceProxy;
     _imgServiceProxy  = imgServiceProxy;
 }
Example #5
0
 public CommentAppService(IDbUnitOfWork dbUnitOfWork, ICommentRepository commentRepository, ICommentTagRepository commentTagRepository, ICommentImageRepository commentImageRepository, IAuthServiceProxy authServiceProxy)
 {
     _commentRepository      = commentRepository;
     _commentTagRepository   = commentTagRepository;
     _dbUnitOfWork           = dbUnitOfWork;
     _commentImageRepository = commentImageRepository;
     _authServiceProxy       = authServiceProxy;
 }
Example #6
0
 public WeChatPaymentAppService(IGateways gateways, IServiceConfigurationProxy configuration, IWeChatApiProxy wechatApiProxy, IOrderServiceProxy orderServiceProxy, IWeChatAppConfigurationRepository wechatAppConfigurationRepository, IAuthServiceProxy authServiceProxy)
 {
     _gateways          = gateways;
     _configuration     = configuration;
     _wechatApiProxy    = wechatApiProxy;
     _orderServiceProxy = orderServiceProxy;
     _wechatAppConfigurationRepository = wechatAppConfigurationRepository;
     _authServiceProxy = authServiceProxy;
 }
Example #7
0
 public GrouponParticipationAppService(
     IGrouponActivityRepository grouponActivityRepository,
     IGrouponParticipationRepository grouponParticipationRepository,
     IDbUnitOfWork dbUnitOfWork,
     IEventBus eventBus,
     IAuthServiceProxy authServiceProxy
     )
 {
     _grouponActivityRepository      = grouponActivityRepository;
     _grouponParticipationRepository = grouponParticipationRepository;
     _dbUnitOfWork     = dbUnitOfWork;
     _eventBus         = eventBus;
     _authServiceProxy = authServiceProxy;
 }
Example #8
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;
 }
 public AuthorizationViewModel(IAuthServiceProxy authServiceProxy, IMessageService <bool> messageService)
     : base(messageService)
 {
     _authServiceProxy = authServiceProxy;
 }
Example #10
0
 public OrderPaidHandler()
 {
     _activityServiceProxy = IocProvider.GetService <IActivityServiceProxy>();
     _goodsServiceProxy    = IocProvider.GetService <IGoodsServiceProxy>();
     _authServiceProxy     = IocProvider.GetService <IAuthServiceProxy>();
 }