2024-11-12 13:07:37 +04:00
|
|
|
|
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; }
|
2024-11-12 22:10:44 +04:00
|
|
|
|
public string PhisicalPersonName { get; set; } = string.Empty;
|
2024-11-12 13:07:37 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|