using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
{
public class CraftEmployee
{
///
/// 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 decimal Amount { get; set; }
///
/// The value of the employee working hours
///
public decimal Value { get; set; }
}
}