예제 #1
0
        public ResponseToWithdrawal WithdrawalToAccount(string account_name, string identifier, decimal balance, string pin)
        {
            RequestWithdrawal    z = new RequestWithdrawal(identifier, account_name, balance, pin);
            ResponseToWithdrawal q = ResponseToWithdrawal.WithdrawalResponse(z);

            return(q);
        }
예제 #2
0
        public ResponseToWithdrawal Withdrawal(string account_name, string identifier, decimal balance, string pin)
        {
            RequestWithdrawal    withdrawal1 = new RequestWithdrawal(identifier, account_name, balance, pin);
            ResponseToWithdrawal withdrawal2 = ResponseToWithdrawal.WithdrawalResponse(withdrawal1);

            return(withdrawal2);
        }