public void Test_PayIns_Get_CardWeb()
        {
            try
            {
                PayInDTO payIn = null;
                payIn = TestHelper.GetJohnsPayInCardWeb();

                PayInDTO getPayIn = _objectToTest.Get(payIn.Id).Result;

                Assert.True(payIn.Id == getPayIn.Id);
                Assert.True(payIn.PaymentType == PayInPaymentType.CARD);
                Assert.True(payIn.ExecutionType == PayInExecutionType.WEB);

                TestHelper.AssertEqualInputProps(payIn, getPayIn);

                Assert.True(getPayIn.Status == TransactionStatus.CREATED);
                Assert.Null(getPayIn.ExecutionDate);
            }
            catch (Exception ex)
            {
                Assert.True(false, ex.Message);
            }
        }