using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
{
public class CraftEmployee
{
///
/// Employee id
///
public int Id { get; set; }
///
/// Craft id
///
public int CraftId { get; set; }
///
/// Craft
///
public virtual Craft Craft { get; set; }
///
/// Employee id
///
public int EmployeeId { get; set; }
///
/// Employee
///
public virtual Employee Employee { get; set; }
///
/// The amount of employee working hours
///
public float Amount { get; set; }
///
/// The value of the employee working hours
///
public float Value { get; set; }
///
/// Employee comment
///
public string Comment { get; set; }
}
}