Пример #1
0
 public UserController(IAuthenticationService authenticationService,
     IMembershipService membershipService,
     IWechatCustomApi wechatCustomApi,
     IWechatUserService wechatUserService,
     IWechatService wechatService) {
     _authenticationService = authenticationService;
     _membershipService = membershipService;
     _wechatCustomApi = wechatCustomApi;
     _wechatUserService = wechatUserService;
     _wechatService = wechatService;
 }
Пример #2
0
 public WeChatController(
     IWechatService wechatService,
     IWechatCustomApi wechatCustomApi) {
     _wechatService = wechatService;
     _wechatCustomApi = wechatCustomApi;
 }