public getAuthenticationExpiryResponse getAuthenticationExpiry(getAuthenticationExpiryRequest request)
        {
            var tmp = new getAuthenticationExpiryResponse();

            tmp.AuthenticationExpiry            = new AuthenticationExpiry();
            tmp.AuthenticationExpiry.ExpiryDate = DateTime.Now.AddYears(1);
            return(tmp);
        }
Example #2
0
        public AuthenticationExpiry getAuthenticationExpiry(AuthenticationExpiryRequest AuthenticationExpiryRequest)
        {
            getAuthenticationExpiryRequest inValue = new getAuthenticationExpiryRequest();

            inValue.AuthenticationExpiryRequest = AuthenticationExpiryRequest;
            getAuthenticationExpiryResponse retVal = ((ICommon10)(this)).getAuthenticationExpiry(inValue);

            return(retVal.AuthenticationExpiry);
        }