public async Task CreatePaymentAsync()
        {
            var payment = new InvoicePayment {
                InvoiceId = 7506691, UserId = 7506691, Amount = 17f, Comment = "", TransactionPurpose = "", CurrencyCode = "", Quote = 1, Type = PaymentType.BankCard
            };

            var result = await SystemUnderTest.CreatePaymentAsync(payment);

            Assert.NotNull(result);
        }
 internal static Api.InvoicePayment ToApi(this InvoicePayment value)
 {
     return(s_invoicePaymentMapper.DomainToApi(value));
 }