コード例 #1
0
 public void CreateNewAuthenticationCode(string userName, string password, string authenticationCode, int userType, string addedBy)
 {
     HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeRequest inValue = new HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeRequest();
     inValue.Body                    = new HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeRequestBody();
     inValue.Body.userName           = userName;
     inValue.Body.password           = password;
     inValue.Body.authenticationCode = authenticationCode;
     inValue.Body.userType           = userType;
     inValue.Body.addedBy            = addedBy;
     HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeResponse retVal = ((HCMIS.Desktop.HCMISRegistrations.RegistrationsSoap)(this)).CreateNewAuthenticationCode(inValue);
 }
コード例 #2
0
 HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeResponse HCMIS.Desktop.HCMISRegistrations.RegistrationsSoap.CreateNewAuthenticationCode(HCMIS.Desktop.HCMISRegistrations.CreateNewAuthenticationCodeRequest request)
 {
     return(base.Channel.CreateNewAuthenticationCode(request));
 }