CourseWork_CarCenter/CarCenter/CarCenterDataModels/Models/IInspectionModel.cs

17 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterDataModels.Models
{
public interface IInspectionModel : IId
{
string InspectionName { get; }
DateTime? InspectionDate { get; }
int AdministratorId { get; }
int? EmployeeId { get; }
public Dictionary<int, ICarModel> InspectionCars { get; }
}
}