Ejemplo n.º 1
0
        public async Task <echoResponse> Echo(AcquirerType acquirerType)
        {
            var echotype = new EchoType();

            echotype.Acquirer = acquirerType;
            return(await client.EchoAsync(echotype));
        }
Ejemplo n.º 2
0
 public AcquirerType GetAcquirerType(string id, string userId, string password)
 {
     acquirerField          = new AcquirerType();
     acquirerField.Id       = id;
     acquirerField.UserId   = userId;
     acquirerField.Password = password;
     return(acquirerField);
 }