1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 10:32:49 -05:00
Files
bitwarden/src/Core/Repositories/ITaxRateRepository.cs
2022-08-29 16:06:55 -04:00

12 lines
357 B
C#

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