public WentangAPIController(IWechatMPUserService addressBookServiceService,
                             IWechatMPUserService WechatMPUserService,
                             IFocusHistoryService FocusHistoryService,
                             IQrCodeService QrCodeService)
     : base(addressBookServiceService)
 {
     _WechatMPUserService = WechatMPUserService;
     _QrCodeService       = QrCodeService;
     _FocusHistoryService = FocusHistoryService;
 }
 public QrCodeController(IQrCodeService objectService, IFocusHistoryService historyService)
     : base(objectService)
 {
     _historyService = historyService;
 }