PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentContracts/ViewModels/EmployeeViewModel.cs

21 lines
568 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentContracts.ViewModels
{
public class EmployeeViewModel
{
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 string PhysicalPersonName { get; set; } = string.Empty;
}
}