using Apimanager_backend.Models; namespace Apimanager_backend.Services { public interface IPaymentConfigService { Task GetPaymentConfigInfoByTypeAsync(string payType); Task> GetAllPaymentAsync(); } }