This commit is contained in:
2023-06-23 09:03:00 +03:00
parent d549877567
commit 4bac59f322
27 changed files with 376 additions and 126 deletions
@@ -6,4 +6,7 @@ public interface IMotionRepository
{
bool Add(Motion motion);
List<Motion> GetByAccount(Guid accountId, DateTime dateFrom, DateTime dateTo);
Motion? Get(Guid userId, Guid id);
bool Update(Motion motion);
bool Remove(Motion motion);
}