21 lines
609 B
C#
21 lines
609 B
C#
|
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|