コード例 #1
0
ファイル: UserController.cs プロジェクト: wolfweb/Ww
 public UserController(IAuthenticationService authenticationService,
     IMembershipService membershipService,
     IWechatCustomApi wechatCustomApi,
     IWechatUserService wechatUserService,
     IWechatService wechatService) {
     _authenticationService = authenticationService;
     _membershipService = membershipService;
     _wechatCustomApi = wechatCustomApi;
     _wechatUserService = wechatUserService;
     _wechatService = wechatService;
 }
コード例 #2
0
ファイル: WeChatController.cs プロジェクト: wolfweb/Ww
 public WeChatController(
     IWechatService wechatService,
     IWechatCustomApi wechatCustomApi) {
     _wechatService = wechatService;
     _wechatCustomApi = wechatCustomApi;
 }