PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentContracts/BindingModels/EmployeeBindingModel.cs

20 lines
554 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentContracts.BindingModels
{
public class EmployeeBindingModel
{
public int? Id { get; set; }
public string NameJob { get; set; } = string.Empty;
public DateTime StartJob { get; set; }
public DateTime? EndJob { get; set; }
public string? PartTimeJob { get; set; }
public float Bid { get; set; }
public int PhysicalPersonId { get; set; }
}
}