Merge pull request 'BACKDEV-401' (#7) from BACKDEV-401 into dev

Reviewed-on: #7
This commit is contained in:
bekodeg 2024-04-25 17:47:17 +04:00
commit b2c7cd9858
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,6 @@
{ {
public interface IId public interface IId
{ {
int Id { get; init; } int Id { get; }
} }
} }

View File

@ -4,6 +4,7 @@
{ {
double Cost { get; } double Cost { get; }
DateTime DateCreate { get; } DateTime DateCreate { get; }
int StoreKeeperId { get; }
public Dictionary<int, (IProductModel, int)> OrderProduct { get; } public Dictionary<int, (IProductModel, int)> OrderProduct { get; }
} }
} }