namespace MyOffice.Data.Repositories.Account; using Models.Accounts; public interface IAccountAccountCategoryRepository { List Get(Guid userId, Guid accountId, Guid categoryId); bool Remove(AccountAccountCategory accountAccountCategory); bool Add(AccountAccountCategory accountAccountCategory); }