10 lines
328 B
C#
10 lines
328 B
C#
namespace MyOffice.Data.Repositories.Account;
|
|
|
|
using Models.Accounts;
|
|
|
|
public interface IAccountAccountCategoryRepository
|
|
{
|
|
List<AccountAccountCategory> Get(Guid userId, Guid accountId, Guid categoryId);
|
|
bool Remove(AccountAccountCategory accountAccountCategory);
|
|
bool Add(AccountAccountCategory accountAccountCategory);
|
|
} |