Изменения типов данных

This commit is contained in:
spacyboy 2024-04-26 19:58:18 +04:00
parent 46b1357fa3
commit 27b3d0c77f
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ namespace CarCenterDataModels.Models
public interface IEquipmentModel : IId public interface IEquipmentModel : IId
{ {
string EquipmentName { get; } string EquipmentName { get; }
string EquipmentDate { get; } double EquipmentPrice { get; }
int AdministratorId { get; } int AdministratorId { get; }
int? PreSaleWorkId { get; } int? PreSaleWorkId { get; }
public Dictionary<int, ICarModel> EquipmentCars { get; } public Dictionary<int, ICarModel> EquipmentCars { get; }

View File

@ -9,7 +9,7 @@ namespace CarCenterDataModels.Models
public interface IInspectionModel : IId public interface IInspectionModel : IId
{ {
string InspectionName { get; } string InspectionName { get; }
string InspectionDate { get; } DateTime InspectionDate { get; }
int AdministratorId { get; } int AdministratorId { get; }
int? EmployeeId { get; } int? EmployeeId { get; }
public Dictionary<int, ICarModel> InspectionCars { get; } public Dictionary<int, ICarModel> InspectionCars { get; }