using SPMS.Domain.Entities; namespace SPMS.Domain.Interfaces; public interface IAppConfigRepository : IRepository { Task GetByKeyAsync(long serviceId, string configKey); Task> GetAllByServiceAsync(long serviceId); }