9 lines
175 B
C#
9 lines
175 B
C#
|
using Core.Entities;
|
||
|
|
||
|
namespace Core.Interfaces
|
||
|
{
|
||
|
public interface IPaymentService
|
||
|
{
|
||
|
Task<CustomerBasket> CreateOrUpdatePaymentIntent(string basketId);
|
||
|
}
|
||
|
}
|