Files
myoffice/MyOffice.Data.Repositories/Account/IAccountAccountCategoryRepository.cs
2023-07-31 08:50:05 +03:00

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);
}