コード例 #1
0
 /// <summary>
 /// Creating Constructor for Login API Controller for accessing.
 /// </summary>
 /// <param name="thirdPartyClientService"></param>
 /// <param name="userService"></param>
 public LoginApiController(IThirdPartyClientService thirdPartyClientService, IUserService userService)
 {
     this.thirdPartyClientService = thirdPartyClientService;
     this.userService             = userService;
 }
コード例 #2
0
 public APIKeysController(IThirdPartyClientService thirdPartyClientService, IAccountService accountService)
 {
     this.thirdPartyClientService = thirdPartyClientService;
     this.accountService          = accountService;
 }