mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
15 lines
455 B
C#
15 lines
455 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Bit.Core.Models.Table;
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|