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

12 lines
348 B
C#

namespace MyOffice.Data.Repositories.Account;
using Models.Accounts;
public interface IAccountCategoryRepository
{
List<AccountCategory> GetAll(Guid userId);
bool Add(AccountCategory accountCategory);
AccountCategory? Get(Guid userId, Guid id);
bool Update(AccountCategory accountCategory);
bool Remove(AccountCategory accountCategory);
}