using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
{
public class EmployeeDegree
{
#region Properties
///
/// Degree Id
///
public int Id { get; set; }
///
/// Degree name
///
public string Name { get; set; }
///
/// Degree value
///
public decimal Value { get; set; }
///
/// Degree order
///
public int Order { get; set; }
///
/// Employees with that degree
///
public virtual ICollection Employees { get; set; }
#endregion
#region Ctor
///
/// Initializes a new instance of the EmployeeDegree class
///
public EmployeeDegree() { }
///
/// Initializes a new instance of the EmployeeDegree class
///
/// The id.
/// The name.
/// The base value.
/// The ordering value.
public EmployeeDegree(int id, string name, decimal value, int order)
{
Id = id;
Name = name;
Value = value;
Order = order;
}
#endregion
}
}