ql_apimanager_backend/Apimanager_backend/Services/IPaymentConfigService.cs

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();
}
}