17 lines
433 B
C#
Raw Normal View History

2024-04-26 19:51:43 +04:00
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; }
2024-04-27 22:39:17 +04:00
DateTime? InspectionDate { get; }
2024-04-26 19:51:43 +04:00
int AdministratorId { get; }
int? EmployeeId { get; }
public Dictionary<int, ICarModel> InspectionCars { get; }
}
2024-04-26 20:23:06 +04:00
}