This commit is contained in:
Zakharov_Rostislav 2024-05-03 09:36:46 +04:00
parent 572569327b
commit c41c5a43c7
4 changed files with 8 additions and 0 deletions

View File

@ -11,5 +11,6 @@ namespace CarShowroomContracts.AbstractModels
{ {
string Color { get; } string Color { get; }
DateTime RealiseDate { get; } DateTime RealiseDate { get; }
int ModelId { get; }
} }
} }

View File

@ -11,5 +11,6 @@ namespace CarShowroomContracts.AbstractModels
{ {
string Name { get; } string Name { get; }
int Price { get; } int Price { get; }
int MakeId { get; }
} }
} }

View File

@ -10,5 +10,7 @@ namespace CarShowroomContracts.AbstractModels
{ {
DateTime SaleTime { get; } DateTime SaleTime { get; }
int Cost { get; } int Cost { get; }
int ClientId { get; }
int EmployeeId { get; }
} }
} }

View File

@ -6,4 +6,8 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<Folder Include="Dtos\" />
</ItemGroup>
</Project> </Project>