Sky.Net/Core/Interfaces/IPaymentService.cs
2022-05-27 15:40:30 -07:00

9 lines
175 B
C#

using Core.Entities;
namespace Core.Interfaces
{
public interface IPaymentService
{
Task<CustomerBasket> CreateOrUpdatePaymentIntent(string basketId);
}
}