21 lines
568 B
C#
21 lines
568 B
C#
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;
|
|
}
|
|
|
|
}
|