Sky.Net/Core/Interfaces/IPaymentService.cs

9 lines
175 B
C#
Raw Normal View History

2022-05-27 15:40:30 -07:00
using Core.Entities;
namespace Core.Interfaces
{
public interface IPaymentService
{
Task<CustomerBasket> CreateOrUpdatePaymentIntent(string basketId);
}
}