Добавил поле ImplementerId во все модели заказа

This commit is contained in:
Никита Потапов 2024-04-22 10:04:47 +04:00
parent e0ccb4f889
commit 653f011380
4 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ namespace SecuritySystemContracts.BindingModels
public int Id { get; set; } public int Id { get; set; }
public int SecureId { get; set; } public int SecureId { get; set; }
public int ClientId { get; set; } public int ClientId { get; set; }
public int ImplementerId { get; set; }
public int Count { get; set; } public int Count { get; set; }
public double Sum { get; set; } public double Sum { get; set; }
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен; public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;

View File

@ -6,5 +6,6 @@
public DateTime? DateFrom { get; set; } public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; } public DateTime? DateTo { get; set; }
public int? ClientId { get; set; } public int? ClientId { get; set; }
public int? ImplementerId { get; set; }
} }
} }

View File

@ -10,6 +10,7 @@ namespace SecuritySystemContracts.ViewModels
public int Id { get; set; } public int Id { get; set; }
public int ClientId { get; set; } public int ClientId { get; set; }
public int SecureId { get; set; } public int SecureId { get; set; }
public int ImplementerId { get; set; }
[DisplayName("ФИО клиента")] [DisplayName("ФИО клиента")]
public string ClientFIO { get; set; } = string.Empty; public string ClientFIO { get; set; } = string.Empty;
[DisplayName("Изделие")] [DisplayName("Изделие")]

View File

@ -6,6 +6,7 @@ namespace SecuritySystemDataModels.Models
{ {
int SecureId { get; } int SecureId { get; }
int ClientId { get; } int ClientId { get; }
int ImplementerId { get; }
int Count { get; } int Count { get; }
double Sum { get; } double Sum { get; }
OrderStatus Status { get; } OrderStatus Status { get; }