1234567891011121314 |
- using Fuel.Payment.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Fuel.Infrastructure.Payment
- {
- public interface IPaymentNotifier
- {
- Task<ElectronicOrderModel> PaymentResult(GenericProcessResponse paymentResult, ElectronicOrderModel electronicOrderModel);
- }
- }
|