using System; using System.Collections.Generic; namespace EmployeeManager.Model { public class Employee { public int Id { get; set; } public string NameJob { get; set; } public DateTime StartJob { get; set; } public DateTime EndJob { get; set; } public string PartTimeJob { get; set; } public float Bid { get; set; } public int PhisicalPersonsId { get; set; } public virtual PhysicalPerson PhisicalPersons { get; set; } public List Salarys { get; set; } public List Vacations { get; set; } } }