This commit is contained in:
2023-06-17 14:25:51 +03:00
parent 7ae5d3bc81
commit 5e0965cfd1
4 changed files with 25 additions and 9 deletions
+1 -1
View File
@@ -308,7 +308,7 @@
if (!_accountMotionRepository.Add(accountMotionDb))
{
return result.Set(GeneralExecStatus.failure);
return result.Set(AccountMotionAddResult.failure);
}
@@ -4,7 +4,7 @@
{
public DateTime Date { get; set; }
public string Motion { get; set; } = null!;
public string Description { get; set; } = null!;
public string? Description { get; set; };
public decimal Plus { get; set; }
public decimal Minus { get; set; }
}