Files
myoffice/MyOffice.Data.Repositories/Account/IAccountAccountCategoryRepository.cs
T
2023-06-17 14:16:09 +03:00

9 lines
270 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);
}