using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using TaxBaik.Domain.Entities; namespace TaxBaik.Domain.Interfaces; public interface ICommonCodeRepository { Task> GetByGroupAsync(string codeGroup, CancellationToken ct = default); Task> GetAllActiveAsync(CancellationToken ct = default); }