Compare commits

..

No commits in common. "bad11364773b58182afb8cc62c22d6012b6a4b66" and "fcfb4a8a53a8a7e855b349bed5396319d154ac6f" have entirely different histories.

9 changed files with 5 additions and 58 deletions

View File

@ -16,8 +16,7 @@ namespace CarCenterContracts.BindingModels
public CarClass CarClass { get; set; }
public int Year { get; set; }
public double Price { get; set; }
public long VINnumber { get; set; }
public int FeatureID { get; set; }
public int VINnumber { get; set; }
public Dictionary<int, IBundlingModel> CarBundlings { get; set; } = new();
}
}

View File

@ -15,5 +15,6 @@ namespace CarCenterContracts.BindingModels
public string CabinColor { get; set; } = string.Empty;
public DriveTypes DriveType { get; set; }
public double Price { get; set; }
public int CarID { get; set; }
}
}

View File

@ -8,6 +8,7 @@
<ItemGroup>
<Folder Include="ViewModels\" />
<Folder Include="SearchModels\" />
<Folder Include="BusinessLogicsContracts\" />
<Folder Include="StoragesContracts\" />
</ItemGroup>

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.SearchModels
{
public class BundlingSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -1,14 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.SearchModels
{
public class CarSearchModel
{
public int? Id { get; set; }
public long? VINnumber { get; set; }
}
}

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.SearchModels
{
public class FeatureSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -1,14 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.SearchModels
{
public class StorekeeperSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -14,8 +14,7 @@ namespace CarCenterDataModels.Models
CarClass CarClass { get; }
int Year { get; }
double Price { get; }
long VINnumber { get; }
int FeatureID { get; }
int VINnumber { get; }
Dictionary<int, IBundlingModel> CarBundlings { get; }
}
}

View File

@ -13,5 +13,6 @@ namespace CarCenterDataModels.Models
string CabinColor { get; }
DriveTypes DriveType { get; }
double Price { get; }
int CarID { get; }
}
}