2024-04-17 12:30:11 +04:00
|
|
|
|
using ServiceStationDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IDefectModel : IId
|
|
|
|
|
{
|
|
|
|
|
string DefectType { get; }
|
|
|
|
|
double DefectPrice { get; }
|
|
|
|
|
int ExecutorId { get; }
|
2024-04-29 22:25:39 +04:00
|
|
|
|
int? RepairId { get; }
|
2024-04-22 00:15:10 +04:00
|
|
|
|
public Dictionary<int, ICarModel> DefectCars { get; }
|
2024-04-17 12:30:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|