Ejemplo n.º 1
0
 public CallbackController(IMyLogger logger, ICacheControl cacheControl, IOptions <WeChatSettings> weChatSettings, IWeChatAPI weChatAPI)
 {
     _logger         = logger;
     _cacheControl   = cacheControl;
     _weChatSettings = weChatSettings;
     _weChatAPI      = weChatAPI;
 }
Ejemplo n.º 2
0
 public TestController(IMyLogger logger, IWeChatAPI weChatAPI, ICacheControl cacheControl)
 {
     _logger       = logger;
     _weChatAPI    = weChatAPI;
     _cacheControl = cacheControl;
 }