示例#1
0
        public void ListFilterByEmail()
        {
            _paymill.ClientService.CreateWithEmailAsync("*****@*****.**").Wait();
            Client.Filter filter = Client.CreateFilter().ByEmail("*****@*****.**");

            PaymillList <Client> wrapper = _paymill.ClientService.ListAsync(filter, null).Result;
            List <Client>        clients = wrapper.Data;

            Assert.IsNotNull(clients);
            Assert.IsFalse(clients.Count == 0);

            Assert.AreEqual(clients[0].Email, "*****@*****.**");
            foreach (var client in clients)
            {
                ValidateClient(client);
            }
        }
示例#2
0
        public void EncodeClientFilter()
        {
            UrlEncoder urlEncoder = new UrlEncoder();

            Client.Filter filter = Client.CreateFilter();
            filter.ByEmail("*****@*****.**");
            filter.ByPayment("_pay12345678");
            filter.BySubscriptionId("_subs12345678");
            filter.ByOfferId("_offery12345678");
            filter.ByCreatedAt(unixEpoch.AddSeconds(1340199740), unixEpoch.AddSeconds(1340199741));
            filter.ByUpdatedAt(unixEpoch.AddSeconds(1385145851), unixEpoch.AddSeconds(1385145851));

            String encodedObject = urlEncoder.EncodeFilterParameters(filter, null, 20, 9);

            Assert.IsNotNull(encodedObject);
            Assert.AreEqual(encodedObject, "payment=_pay12345678&subscription=_subs12345678&offer=_offery12345678&email=john.rambo%40qaiware.com&created_at=1340199740-1340199741&updated_at=1385145851-1385145851&count=20&offset=9");
        }
示例#3
0
 /// <summary>
 /// This function returns a <see cref="PaymillList"/> of PAYMILL objects. In which order this list is returned depends on the
 /// optional parameters. If null is given, no filter or order will be applied, overriding the default count and
 /// offset.
 /// </summary>
 /// <param name="filter">Filter or null</param>
 /// <param name="order">Order or null.</param>
 /// <param name="count">Max count of returned objects in the PaymillList</param>
 /// <param name="offset">The offset to start from.</param>
 /// <returns>PaymillList which contains a List of PAYMILL objects and their total count.</returns>
 public async Task <PaymillWrapper.Models.PaymillList <Client> > ListAsync(Client.Filter filter, Client.Order order, int?count, int?offset)
 {
     return(await base.listAsync(filter, order, count, offset));
 }
示例#4
0
 /// <summary>
 /// This function returns a <see cref="PaymillList"/>of PAYMILL Client objects. In which order this list is returned depends on the
 /// </summary>
 /// <param name="filter">Filter or null</param>
 /// <param name="order">Order or null.</param>
 /// <returns>PaymillList which contains a List of PAYMILL Client object and their total count.</returns>
 public async Task <PaymillWrapper.Models.PaymillList <Client> > ListAsync(Client.Filter filter, Client.Order order)
 {
     return(await base.listAsync(filter, order, null, null));
 }