8 lines
217 B
C#
8 lines
217 B
C#
|
|
namespace NetinaShop.AdminPanel.PWA.Services.RestServices;
|
|||
|
|
|
|||
|
|
public interface IPaymentRestApi
|
|||
|
|
{
|
|||
|
|
[Get("")]
|
|||
|
|
Task<List<PaymentSDto>> ReadAll([Query] int page, [Header("Authorization")] string authorization);
|
|||
|
|
|
|||
|
|
}
|