22 lines
743 B
C#
22 lines
743 B
C#
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; }
|
|
public string NamePhysicalPersons { get; set; } = string.Empty;
|
|
public string SurnamePhysicalPersons { get; set; } = string.Empty;
|
|
public string PatronomicPhysicalPersons { get; set; } = string.Empty;
|
|
public DateTime Birthday { get; set; }
|
|
public string Gender { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public string Telephone { get; set; } = string.Empty;
|
|
public List<Employee> Employees { get; set; }
|
|
}
|
|
}
|