public WeChatServiceController(IWeChatAuthService weChatAuthService,
                                IWeChatPayService weChatPayService,
                                IWeChatMessageService wChatMessageService,
                                IWeChatRedPackService weChatRedPackService,
                                IWeChatEventServices weChatEventServices)
 {
     _weChatAuthService    = weChatAuthService;
     _weChatPayService     = weChatPayService;
     _wChatMessageService  = wChatMessageService;
     _weChatRedPackService = weChatRedPackService;
     _weChatEventServices  = weChatEventServices;
 }
 public WeChatMessageService(IWeChatAuthService weChatAuthService)
 {
     _weChatAuthService = weChatAuthService;
 }
Esempio n. 3
0
 public WeChatController(IWeChatAuthService weChatAuthService)
 {
     _weChatAuthService = weChatAuthService;
 }