using Bit.Core.Entities; namespace Bit.Core.Repositories; public interface ITaxRateRepository : IRepository { Task> SearchAsync(int skip, int count); Task> GetAllActiveAsync(); Task ArchiveAsync(TaxRate model); Task> GetByLocationAsync(TaxRate taxRate); }