Upload files to 'ShipyardContracts/BindingModels'

This commit is contained in:
Ivan_Starostin 2024-06-02 18:03:00 +04:00
parent 83fd415ffc
commit 57cb2a358c
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,18 @@
using ShipyardDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardContracts.BindingModels
{
public class ImplementerBindingModel : IImplementerModel
{
public int Id { get; set; }
public string ImplementerFIO { get; set; } = string.Empty;
public int WorkExperience { get; set; } = 0;
public int Qualification { get; set; } = 0;
public string Password { get; set; } = string.Empty;
}
}

View File

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