This commit is contained in:
2023-07-23 20:27:23 +03:00
parent d0cdaa85b6
commit 96eca795ab
62 changed files with 2934 additions and 847 deletions
@@ -9,6 +9,7 @@ public interface IAccountRepository
List<AccountDetailed> GetByCategoryDetailed(Guid userId, Guid categoryId);
AccountDetailed? GetByIdDetailed(Guid userId, Guid id);
bool Add(Account account);
bool Delete(Account account);
Account? Get(Guid userId, Guid id);
bool Update(Account account);
bool Remove(Account account);