19 lines
569 B
C#
19 lines
569 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CarCenterContracts.BindingModels
|
|||
|
{
|
|||
|
public class InspectionBindingModel : IInspectionModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string InspectionName { get; set; } = string.Empty;
|
|||
|
public DateTime? InspectionDate { get; set; }
|
|||
|
public int AdministratorId { get; set; }
|
|||
|
public int? EmployeeId { get; set; }
|
|||
|
public Dictionary<int, ICarModel> InspectionCars { get; set; } = new();
|
|||
|
}
|
|||
|
}
|