исправление моделей viue

This commit is contained in:
bekodeg
2024-04-25 22:20:09 +04:00
parent 25d027fe30
commit 816fdcb208
13 changed files with 32 additions and 27 deletions

View File

@@ -2,7 +2,7 @@
{
public interface IBuildModel : IId
{
string BuildName { get; }
string Name { get; }
double Price { get; }
int VendorId { get; }
public Dictionary<int, (IComponentModel, int)> BuildComponent { get; }

View File

@@ -2,7 +2,7 @@
{
public interface IComponentModel : IId
{
string ComponentName { get; }
string Name { get; }
double Cost { get; }
int StoreKeeperId { get; }
}

View File

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