Правки

This commit is contained in:
2024-04-17 16:38:34 +04:00
parent 868d6c5c14
commit 9aab6dc017
3 changed files with 1 additions and 5 deletions

View File

@@ -14,8 +14,6 @@ namespace ServiceStationContracts.BindingModels
public string DefectType { get; set; } = string.Empty;
public Status DefectStatus { get; set; } = Status.Неизвестен;
public double DefectPrice { get; set; }
public int ExecutorId { get; set; }

View File

@@ -15,8 +15,7 @@ namespace ServiceStationContracts.ViewModels
[DisplayName("Тип неисправности")]
public string DefectType { get; set; } = string.Empty;
[DisplayName("Статус неисправности")] //?
public Status DefectStatus { get; set; } = Status.Неизвестен;
[DisplayName("Цена неисправности")]
public double DefectPrice { get; set; }

View File

@@ -10,7 +10,6 @@ namespace ServiceStationDataModels.Models
public interface IDefectModel : IId
{
string DefectType { get; }
Status DefectStatus { get; }
double DefectPrice { get; }
int ExecutorId { get; }
}