using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Models.Table; namespace Bit.Core.Repositories { public interface ITaxRateRepository : IRepository { Task> SearchAsync(int skip, int count); Task> GetAllActiveAsync(); Task ArchiveAsync(TaxRate model); Task> GetByLocationAsync(TaxRate taxRate); } }