public void GetLastPaymentTest()
        {
            var p = billingClient.GetLastPayment("208761");

            Assert.AreEqual(p.ProductId, "1");
            Assert.AreEqual(p.EndDate, new DateTime(2012, 5, 8, 13, 36, 30));
            Assert.IsFalse(p.Autorenewal);
        }
        public void GetLastPaymentTest()
        {
            var p = billingClient.GetLastPayment("3b0d4e19-f539-4829-b090-269ce12e0a96");

            Assert.AreEqual(p.ProductId, "1");
            Assert.AreEqual(p.StartDate, new DateTime(2012, 4, 8, 13, 36, 30));
            Assert.AreEqual(p.EndDate, new DateTime(2012, 5, 8, 13, 36, 30));
            Assert.IsFalse(p.Autorenewal);
        }