PIbd-42_Kashin_M.I_CPO_Cour.../Model/Employee.cs

21 lines
609 B
C#
Raw Normal View History

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<Salary> Salarys { get; set; }
public List<Vacation> Vacations { get; set; }
}
}