Upload files to 'ShipyardContracts/BindingModels'
This commit is contained in:
parent
83fd415ffc
commit
57cb2a358c
18
ShipyardContracts/BindingModels/ImpelmenterBindingModel.cs
Normal file
18
ShipyardContracts/BindingModels/ImpelmenterBindingModel.cs
Normal 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;
|
||||
}
|
||||
}
|
@ -7,7 +7,8 @@ namespace ShipyardContracts.BindingModels
|
||||
public int Id { get; set; }
|
||||
public int ShipId { get; set; }
|
||||
public int ClientId { get; set; }
|
||||
public int Count { get; set; }
|
||||
public int? ImplementerId { get; set; } = null;
|
||||
public int Count { get; set; }
|
||||
public double Sum { get; set; }
|
||||
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
||||
public DateTime DateCreate { get; set; } = DateTime.Now;
|
||||
|
Loading…
Reference in New Issue
Block a user