2024-11-26 14:12:47 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EmployeeManager.Model
|
|
|
|
|
{
|
|
|
|
|
public class PhysicalPerson
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-11-26 15:30:46 +04:00
|
|
|
|
public string NamePhysicalPersons { get; set; } = string.Empty;
|
|
|
|
|
public string SurnamePhysicalPersons { get; set; } = string.Empty;
|
|
|
|
|
public string PatronomicPhysicalPersons { get; set; } = string.Empty;
|
2024-11-26 14:12:47 +04:00
|
|
|
|
public DateTime Birthday { get; set; }
|
2024-11-26 15:30:46 +04:00
|
|
|
|
public string Gender { get; set; } = string.Empty;
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
|
|
|
|
public string Telephone { get; set; } = string.Empty;
|
2024-11-26 14:12:47 +04:00
|
|
|
|
public List<Employee> Employees { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|