11 lines
270 B
C#
11 lines
270 B
C#
using Apimanager_backend.Models;
|
|
|
|
namespace Apimanager_backend.Services
|
|
{
|
|
public interface IPaymentConfigService
|
|
{
|
|
Task<PaymentConfig> GetPaymentConfigInfoByTypeAsync(string payType);
|
|
Task<List<PaymentConfigDto>> GetAllPaymentAsync();
|
|
}
|
|
}
|